// *********************************************************************** // Assembly : Game // Author : Kimch // Created : 2022-01-14 // Description : // Last Modified By : // Last Modified On : // *********************************************************************** // // // *********************************************************************** namespace G.UI { public partial class PropListBox : KUIWindow { #region Constructor public PropListBox() : base(UILayer.kFloat, UIMode.kNone) { uiPath = "ui_w_prop_list"; } #endregion #region Method #endregion #region Unity /// /// /// public override void Awake() { InitView(); } /// /// /// public override void OnEnable() { RefreshView(); } #endregion } }