KSP-Conformal-Decals/Source/ConformalDecals/UI/TextEntryController.cs

9 lines
188 B
C#
Raw Normal View History

2020-07-13 05:38:37 +00:00
using UnityEngine;
namespace ConformalDecals.UI {
public class TextEntryController : MonoBehaviour {
public void OnClose() {
Debug.Log("Close!");
}
}
}