22 lines
464 B
C#
22 lines
464 B
C#
public class Const
|
|
{
|
|
#region 路径配置
|
|
/// <summary>
|
|
/// 系统标题图路径
|
|
/// </summary>
|
|
public const string TitleSpritePath = "Sprites/Title/";
|
|
|
|
/// <summary>
|
|
/// 系统加载背景图路径
|
|
/// </summary>
|
|
public const string LoadBGPath = "Sprites/UI_LoadingBG/";
|
|
#endregion
|
|
|
|
public const string CheckKeyDown = "CheckKeyDown";
|
|
public const string CheckKeyUp = "CheckKeyUp";
|
|
public const string CheckKey = "CheckKey";
|
|
|
|
|
|
|
|
}
|