aboutsummaryrefslogtreecommitdiff
path: root/src/gameScreen.h
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-09-23 21:25:54 -0600
committernathansmithsmith <nathansmith7@mailfence.com>2023-09-23 21:25:54 -0600
commitc8132c56f0d1d712e4841a60f9f0f853e7177715 (patch)
treee770618d1d3acd7f2768c51ad497e318d1dbd286 /src/gameScreen.h
parent6ba19e2332162de3225d60ae2a377a894ab7299f (diff)
Radar working
Diffstat (limited to 'src/gameScreen.h')
-rw-r--r--src/gameScreen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gameScreen.h b/src/gameScreen.h
index 42591a4..9e0f99a 100644
--- a/src/gameScreen.h
+++ b/src/gameScreen.h
@@ -1,5 +1,6 @@
#include "gameCommon.h"
#include "gyroscope.h"
+#include "radar.h"
#ifndef GAME_SCREEN_H
#define GAME_SCREEN_H
@@ -10,6 +11,7 @@
typedef struct GameScreen {
Vector2 infoText;
Gyroscope gyroscope;
+ Radar radar;
} GameScreen;
void initGameScreen(GameScreen * gameScreen);