// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2021-01-08 // Description : // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** namespace G.UI { public partial class TextBox : KUIWindow { #region Constructor public TextBox() : base(UILayer.kPopup, UIMode.kNone) { uiPath = "ui_common/ui_w_text_input.prefab"; } #endregion #region Method #endregion #region Unity /// /// /// public override void Awake() { InitView(); } /// /// /// public override void OnEnable() { RefreshView(); } /// /// /// public override void Update() { UpdateView(); } /// /// /// public override void UpdatePerSecond() { } #endregion } }