aboutsummaryrefslogtreecommitdiff
path: root/systems.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-02 21:37:07 +1000
committerquou <quou@disroot.org>2023-05-02 21:37:07 +1000
commit65fa1051585f5345c3270db73ab53b7a0dbbaa50 (patch)
tree30fed63168b86f8de48698174b265ffbdfae4343 /systems.h
parentd3745895ca0107c705b2d89b8b80e254536dad86 (diff)
Add ECS.
Diffstat (limited to 'systems.h')
-rw-r--r--systems.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/systems.h b/systems.h
new file mode 100644
index 0000000..15abce1
--- /dev/null
+++ b/systems.h
@@ -0,0 +1,8 @@
+#ifndef systems_h
+#define systems_h
+
+#include "world.h"
+
+void sprite_system(const World* world);
+
+#endif