mirror of
https://github.com/drewcassidy/KSP-Conformal-Decals.git
synced 2024-09-01 18:23:54 +00:00
10 lines
255 B
C#
10 lines
255 B
C#
using UnityEngine;
|
|
|
|
namespace ConformalDecals.UI {
|
|
public class FontMenuController : MonoBehaviour {
|
|
[SerializeField] private GameObject _menuItem;
|
|
[SerializeField] private GameObject _menuList;
|
|
|
|
public void Close() { }
|
|
}
|
|
} |