diff options
| author | nathan <nathansmith@disroot.org> | 2025-12-18 10:23:19 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-12-18 10:23:19 +0000 |
| commit | bcdd09d5075c9755538a93db8e3ca2690a803cc1 (patch) | |
| tree | 25a9e2e307bcc7d0908a81f7de6f365ab9230ff1 /src/player.h | |
| parent | edaafadf2c5de7f23dfc20d420e973ed9dc92039 (diff) | |
| download | FindThings-bcdd09d5075c9755538a93db8e3ca2690a803cc1.tar.gz FindThings-bcdd09d5075c9755538a93db8e3ca2690a803cc1.tar.bz2 FindThings-bcdd09d5075c9755538a93db8e3ca2690a803cc1.zip | |
Finally getting interaction stuff done
Diffstat (limited to 'src/player.h')
| -rw-r--r-- | src/player.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h index 71c9993..436f8d0 100644 --- a/src/player.h +++ b/src/player.h @@ -1,4 +1,5 @@ #include "utils.h" +#include "world.h" #ifndef PLAYER_H #define PLAYER_H @@ -14,6 +15,8 @@ typedef struct { Camera camera; Vector2 cameraAngle; + + WorldUID interactingWith; } Player; Player createPlayer(); |
