summaryrefslogtreecommitdiffhomepage
path: root/src/world.h
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2024-05-11 21:30:23 -0400
committerrealtradam <[email protected]>2024-05-11 21:30:23 -0400
commit8855c3de33c487e09b6a8fd474b0dd351ab3581c (patch)
tree37a6a5190d51375ea56c8a6012e1986e159dd168 /src/world.h
parentdf5f113e746a9c6941ccb7c2076aa52ece33923e (diff)
downloadtojam2024-8855c3de33c487e09b6a8fd474b0dd351ab3581c.tar.gz
tojam2024-8855c3de33c487e09b6a8fd474b0dd351ab3581c.zip
split screen
Diffstat (limited to 'src/world.h')
-rw-r--r--src/world.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h
new file mode 100644
index 0000000..9f18137
--- /dev/null
+++ b/src/world.h
@@ -0,0 +1,13 @@
+#ifndef GAME_WORLD_H
+#define GAME_WORLD_H
+
+#include "player.h"
+
+typedef
+struct
+{
+ Player players[2];
+}
+World;
+
+#endif