mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 00:08:51 -05:00
12 lines
332 B
C#
12 lines
332 B
C#
namespace TriInspector
|
|
{
|
|
public static class TriDrawerOrder
|
|
{
|
|
public const int System = -9999;
|
|
public const int Inspector = -2000;
|
|
public const int Validator = -1500;
|
|
public const int Decorator = -1000;
|
|
public const int Drawer = 0;
|
|
public const int Fallback = 9999;
|
|
}
|
|
} |