41 lines
992 B
C#
41 lines
992 B
C#
namespace BingoBrain.Core
|
|
{
|
|
public static class RyerConst
|
|
{
|
|
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
|
|
};
|
|
}
|
|
} |