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