summaryrefslogtreecommitdiff
path: root/src/ecs.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2024-01-12 08:16:12 -0500
committerJonathan Bradley <jcb@pikum.xyz>2024-01-12 08:16:12 -0500
commit843a55e01a444b51e5f9c57e67b76e14028b22fa (patch)
tree1dd67ca32525f053442d57b3918a61f425dea55f /src/ecs.hpp
parent76b1133db103e6544cec6c9b0d290723b93fd8e0 (diff)
dead code
Diffstat (limited to 'src/ecs.hpp')
-rw-r--r--src/ecs.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ecs.hpp b/src/ecs.hpp
index 4ddf232..2550487 100644
--- a/src/ecs.hpp
+++ b/src/ecs.hpp
@@ -12,12 +12,6 @@
extern DynArray<Entity_Base *> EntitiesToBeRemoved;
extern DynArray<Entity_Base *> EntitiesWithExcessInstances;
-static struct {
- uint64_t Entity = 1ULL << 0;
- uint64_t GrBinds = 1ULL << 1;
- uint64_t Instance = 1ULL << 2;
-} ComponentTypes;
-
void ECS_Init();
void ECS_Teardown();
void ECS_Tick_Early(double delta);