You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KSP-Conformal-Decals/Source/ConformalDecals/UI/TextEntryController.cs

9 lines
188 B
C#

using UnityEngine;
namespace ConformalDecals.UI {
public class TextEntryController : MonoBehaviour {
public void OnClose() {
Debug.Log("Close!");
}
}
}