aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-02-21 17:42:07 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-02-21 17:42:07 +0000
commitba522d0b6e8172d2d9f0ee107fbb2d6499380847 (patch)
tree7727c315be6e02261bd3a55a6c25901f2d327963 /src/game.h
parentecb467030530f54dfcf530132c4cd7194dc0f484 (diff)
downloadPenguinYippies-ba522d0b6e8172d2d9f0ee107fbb2d6499380847.tar.gz
PenguinYippies-ba522d0b6e8172d2d9f0ee107fbb2d6499380847.tar.bz2
PenguinYippies-ba522d0b6e8172d2d9f0ee107fbb2d6499380847.zip
Working on resizing thingy
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
index 81cfa67..7b8d145 100644
--- a/src/game.h
+++ b/src/game.h
@@ -18,6 +18,9 @@ typedef struct Game {
ScreenId currentScreen;
MainMenu mainMenu;
GameScreen gameScreen;
+
+ // Wacky little render texture to make it look more like a unity game lmao.
+ RenderTexture screenTexture;
} Game;
void initGame(Game* game);