diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-27 15:00:19 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-27 15:00:19 -0600 |
commit | 4a5bdb90ffdbd9974f86df14893e7287f2faa933 (patch) | |
tree | ecebe433777c400de51fbd7cb424cf0a37fad10f /src/gameScreen.h | |
parent | df05d6f688422930e8efc4a73df435e497f3776a (diff) |
Better targeting
Diffstat (limited to 'src/gameScreen.h')
-rw-r--r-- | src/gameScreen.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gameScreen.h b/src/gameScreen.h index 1fdf089..e4f8d20 100644 --- a/src/gameScreen.h +++ b/src/gameScreen.h @@ -8,10 +8,13 @@ #define GAME_SCREEN_TEXT_SIZE 20.0 #define GAME_SCREEN_NEXT_LEVEL_DELAY 2.0 +#define GAME_SCREEN_TARGET_INFO_MAX 20 // Gui stuff and shit. typedef struct GameScreen { - Vector2 infoText; + Vector2 infoTextPosition; + Vector2 targetInfoPosition; + Gyroscope gyroscope; Radar radar; CameraId mainCamera; |