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

32 lines
1.5 KiB
C#
Raw Normal View History

2024-06-12 15:01:54 +08:00
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";
2024-06-12 15:01:54 +08:00
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";
2024-06-24 16:48:32 +08:00
public static readonly string UIMainPanelBg = "UIMainPanelBG";
2024-06-12 15:01:54 +08:00
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";
2024-07-18 20:01:43 +08:00
public static readonly string UIStartMain = "UIStartMain";
2024-06-12 15:01:54 +08:00
//BG
public static readonly string UILevelBg = "UILevelBG";
}
}