Forest_Client/Forest/Assets/Scripts/Gameplay/Constants/Constants.UI.cs

30 lines
1.4 KiB
C#

namespace Framework.Constants
{
public class UIConstants
{
//Img
public static readonly string ImgLoading = "ImgLoading";
public static readonly string UITips = "UITips";
public static readonly string UIShop = "UIMainShop";
public static readonly string UILogin = "UILoginPanel";
public static readonly string UILevelPanel = "UILevelPanel";
public static readonly string UIScore = "UIScore";
public static readonly string UILoading = "UILoading";
public static readonly string UIAdPopUp = "UIADPopup";
public static readonly string UISyncTip = "UISyncTip";
public static readonly string UIWinPanel = "UIWinPanel";
public static readonly string UIBuyGoods = "UIBuyGoods";
public static readonly string UILosePanel = "UILosePanel";
public static readonly string UIMainPanel = "UIMainPanel";
public static readonly string UIMainPanelBg = "UIMainPanelBG";
public static readonly string UIStayTuned = "UIStayTuned";
public static readonly string UIPausePanel = "UIPausePanel";
public static readonly string UILevelSelect = "UILevelSelect";
public static readonly string UISettingPanel = "UISettingPanel";
public static readonly string UIUserAgreement = "UIUserAgreement";
//BG
public static readonly string UILevelBg = "UILevelBG";
}
}