summaryrefslogtreecommitdiff
path: root/ecs.h
diff options
context:
space:
mode:
Diffstat (limited to 'ecs.h')
-rw-r--r--ecs.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/ecs.h b/ecs.h
new file mode 100644
index 0000000..9698945
--- /dev/null
+++ b/ecs.h
@@ -0,0 +1,10 @@
+#pragma once
+
+typedef struct EcsContext EcsContext;
+
+struct EcsContext {
+ int _;
+};
+
+void ecs_init(EcsContext *ctx);
+void ecs_deinit(EcsContext *ctx);