mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 01:44:35 +08:00
Update Consts.cs
This commit is contained in:
parent
92fa358c33
commit
830a83c0d0
@ -19,5 +19,31 @@
|
||||
public const string META_HIDDEN_TAG = "HiddenInDebagging";
|
||||
|
||||
public const int MAGIC_PRIME = 314159;
|
||||
|
||||
/// defs
|
||||
public const bool REFLECTION_DISABLED =
|
||||
#if REFLECTION_DISABLED
|
||||
true;
|
||||
#else
|
||||
false;
|
||||
#endif
|
||||
public const bool DISABLE_DEBUG =
|
||||
#if DISABLE_DEBUG
|
||||
true;
|
||||
#else
|
||||
false;
|
||||
#endif
|
||||
public const bool ENABLE_DRAGONECS_ASSERT_CHEKS =
|
||||
#if ENABLE_DRAGONECS_ASSERT_CHEKS
|
||||
true;
|
||||
#else
|
||||
false;
|
||||
#endif
|
||||
public const bool ENABLE_DUMMY_SPAN =
|
||||
#if ENABLE_DUMMY_SPAN
|
||||
true;
|
||||
#else
|
||||
false;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user