add MetaTags.ENGINE_MEMBER

This commit is contained in:
Mikhail 2024-10-06 15:53:14 +08:00
parent c13deb9d13
commit 005a5ff541
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@
public const string POST_END_LAYER = NAME_SPACE + nameof(POST_END_LAYER);
public const string META_HIDDEN_TAG = "HiddenInDebagging";
public const string META_ENGINE_MEMBER_TAG = "EngineMember";
public const int MAGIC_PRIME = 314159;

View File

@ -35,5 +35,6 @@ namespace DCFApixels.DragonECS
public readonly ref struct MetaTags
{
public const string HIDDEN = EcsConsts.META_HIDDEN_TAG;
public const string ENGINE_MEMBER = EcsConsts.META_ENGINE_MEMBER_TAG;
}
}