aboutsummaryrefslogtreecommitdiff
path: root/player.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-06 12:22:50 +1000
committerquou <quou@disroot.org>2023-05-06 12:22:50 +1000
commit937edea9599718e959f8ed135e97c68728855975 (patch)
treeea5d5551b470603d2d907dba4869ff52e742d9de /player.h
parent91aef268319a77ee8f5a082ca89264bf2671e212 (diff)
Add solid environment collisions.
Diffstat (limited to 'player.h')
-rw-r--r--player.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/player.h b/player.h
index 0e84b9e..0fb3e4d 100644
--- a/player.h
+++ b/player.h
@@ -15,5 +15,6 @@ typedef struct {
void init_player(Player* player, struct World* world);
void update_player(Player* player, struct World* world);
void player_take_damage(Player* player, int dmg);
+void update_camera(Player* player, struct World* world);
#endif