20 lines
706 B
C#
20 lines
706 B
C#
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 const float MAIN_CAMERA_START_FOV = 30;
|
||
public const float UI_SETFLAG_OFFSET_Y = 4.5f;
|
||
public const float UI_GRID_OFFSET_Y = 2f;
|
||
}
|
||
} |