aboutsummaryrefslogtreecommitdiff
path: root/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'player.h')
-rw-r--r--player.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/player.h b/player.h
new file mode 100644
index 0000000..37a7f2a
--- /dev/null
+++ b/player.h
@@ -0,0 +1,13 @@
+#ifndef player_h
+#define player_h
+
+struct World;
+
+typedef struct {
+ int entity;
+} Player;
+
+void init_player(Player* player, struct World* world);
+void update_player(Player* player, struct World* world);
+
+#endif