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