diff options
| author | BoredGuy <osome3717@gmail.com> | 2026-03-16 17:47:57 +0300 |
|---|---|---|
| committer | BoredGuy <osome3717@gmail.com> | 2026-03-16 17:47:57 +0300 |
| commit | ac02199694ffef81a00a8ea47420e88ef0a35f67 (patch) | |
| tree | ab8be37dd6960954d7baa54bb1273980063c66ba /src/player.h | |
| parent | 2c2be83a370318ca69824538ed3e61784295a772 (diff) | |
More work on systems
- Will be done soon (I think)
- Added first entity
Diffstat (limited to 'src/player.h')
| -rw-r--r-- | src/player.h | 9 |
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_ |
