From ac02199694ffef81a00a8ea47420e88ef0a35f67 Mon Sep 17 00:00:00 2001 From: BoredGuy Date: Mon, 16 Mar 2026 17:47:57 +0300 Subject: More work on systems - Will be done soon (I think) - Added first entity --- src/player.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/player.h (limited to 'src/player.h') 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_ -- cgit v1.2.3