summaryrefslogtreecommitdiff
path: root/src/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.h')
-rw-r--r--src/player.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h
new file mode 100644
index 0000000..36f2d7b
--- /dev/null
+++ b/src/player.h
@@ -0,0 +1,9 @@
+#ifndef PLAYER_H_
+#define PLAYER_H_
+
+#include "entity.h"
+
+void add_player(float xpos, float ypos);
+void update_player(struct entity* player, float dt);
+
+#endif // PLAYER_H_