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