mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
11 lines
257 B
C#
11 lines
257 B
C#
namespace ET
|
|
{
|
|
public static class InstanceQueueIndex
|
|
{
|
|
public const int None = -1;
|
|
public const int Update = 0;
|
|
public const int LateUpdate = 1;
|
|
public const int Load = 2;
|
|
public const int Max = 3;
|
|
}
|
|
} |