using TMPro; namespace Studio.UI.Popup { public class UIQuitPopup : MonoBehaviour, IUIPopupContent { public static readonly string PrefabPath = "Prefabs/Popup/UIQuitPopup"; public bool IsOkable => true; public bool IsCancelable => true; private TextMeshProUGUI text_quit; private void Start() { text_quit = GetComponentInChildren(); } public object GetResult() { return "OK"; } } }