aboutsummaryrefslogtreecommitdiff
path: root/src/gameScreen.h
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-11-05 17:58:22 -0700
committernathansmithsmith <nathansmith7@mailfence.com>2023-11-05 17:58:22 -0700
commitc38a7c4bca5b1efcdc2fb83551c34f28a8069026 (patch)
tree7dc0f2cca1758f2373aa7da3fdd1f55c197516d5 /src/gameScreen.h
parent451887dabd71b6b9b8cdf2587fee31ec59c3675b (diff)
Better star system
Diffstat (limited to 'src/gameScreen.h')
-rw-r--r--src/gameScreen.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gameScreen.h b/src/gameScreen.h
index 112897c..bedee78 100644
--- a/src/gameScreen.h
+++ b/src/gameScreen.h
@@ -2,6 +2,7 @@
#include "gyroscope.h"
#include "radar.h"
#include "cameras.h"
+#include "stars.h"
#ifndef GAME_SCREEN_H
#define GAME_SCREEN_H
@@ -31,6 +32,8 @@ typedef struct GameScreen {
RenderTexture worldRender;
bool usingWorldRenderTexture;
+
+ Stars stars;
} GameScreen;
void initGameScreen(Game * game, GameScreen * gameScreen);