NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Framework/Constants/Constants.cs

18 lines
648 B
C#
Raw Normal View History

2023-10-19 15:00:19 +08:00
namespace Framework
2023-08-22 19:08:45 +08:00
{
2023-10-19 15:00:19 +08:00
public static partial class Constants
2023-08-22 19:08:45 +08:00
{
public const float DOUBLE_EPSILON = float.Epsilon;
public const int INVALID_ID = -1;
public const uint INVALID_UINT_ID = 0;
public const float HEARTBEAT_INTERVAL = 5.0f; // 网络心跳发送频率5秒一次
public const int EID_CHARACTER_SELECT = 1;
2023-10-19 15:00:19 +08:00
public static readonly int ADVANCE_FLAG_UI = 4;
public static readonly int BREAK_FLAG_UI = 4;
public static readonly int DEFULT_SKINID = 1;
2024-06-18 19:57:07 +08:00
public static readonly string BUFF_ICON_PATH = "Assets/Art/UI/Texture/Icon/BuffIcon/{0}.png";
2023-08-22 19:08:45 +08:00
}
}