Files
BallCrushBest_GP/Assets/Scripts/Define/Constant/UILayerConst.cs
T
2026-04-20 12:06:34 +08:00

41 lines
996 B
C#

namespace BallKingdomCrush
{
public static class UILayerConst
{
public const string Background = "Background";
public const string Bottom = "Bottom";
public const string Normal = "Normal";
public const string Top = "Top";
public const string FullScreen = "FullScreen";
public const string Popup = "Popup";
public const string Highest = "Highest";
public const string Animation = "Animation";
public const string Tips = "Tips";
public const string Loading = "Loading";
public const string System = "System";
public const string NetworkError = "NetworkError";
public static readonly string[] AllUILayer = {
Background,
Bottom,
Normal,
Top,
FullScreen,
Popup,
Highest,
Animation,
Tips,
Loading,
System,
NetworkError
};
}
}