aboutsummaryrefslogtreecommitdiff
path: root/source/GameObjectTags.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-04-25 20:22:07 -0700
committerrtk0c <[email protected]>2022-04-25 20:22:07 -0700
commit855da86feae1a5cc14dc2d486ccf115f484dbc2e (patch)
tree8284c6a6bdfb1a919eb1a22f466f4180a329c7f3 /source/GameObjectTags.hpp
parentd78a55de5003dbb040f1d1c369409e63a2c806d8 (diff)
Changeset: 16 Initial work on rendering sprites to screen
Diffstat (limited to 'source/GameObjectTags.hpp')
-rw-r--r--source/GameObjectTags.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/GameObjectTags.hpp b/source/GameObjectTags.hpp
deleted file mode 100644
index 01a0ca4..0000000
--- a/source/GameObjectTags.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#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