aboutsummaryrefslogtreecommitdiff
path: root/source/GameObjectTags.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/GameObjectTags.hpp')
-rw-r--r--source/GameObjectTags.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/source/GameObjectTags.hpp b/source/GameObjectTags.hpp
new file mode 100644
index 0000000..01a0ca4
--- /dev/null
+++ b/source/GameObjectTags.hpp
@@ -0,0 +1,22 @@
+#pragma once
+
+namespace Tags {
+enum GameObjectMemoryManagement {
+ GOMM_None,
+ GOMM_AllChildren,
+ GOMM_SelfAndAllChildren,
+ GOMM_COUNT,
+};
+
+const char* NameOf(GameObjectMemoryManagement value);
+
+enum GameObjectType {
+ GOT_Generic, ///< All uncategorized game objects.
+ GOT_Player,
+ GOT_Building,
+ GOT_LevelWrapper,
+ GOT_COUNT,
+};
+
+const char* NameOf(GameObjectType value);
+} // namespace Tags