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

18 lines
648 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace Framework
{
public static partial class Constants
{
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;
public static readonly int ADVANCE_FLAG_UI = 4;
public static readonly int BREAK_FLAG_UI = 4;
public static readonly int DEFULT_SKINID = 1;
public static readonly string BUFF_ICON_PATH = "Assets/Art/UI/Texture/Icon/BuffIcon/{0}.png";
}
}