diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-21 17:42:07 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-21 17:42:07 +0000 |
commit | ba522d0b6e8172d2d9f0ee107fbb2d6499380847 (patch) | |
tree | 7727c315be6e02261bd3a55a6c25901f2d327963 /src/game.h | |
parent | ecb467030530f54dfcf530132c4cd7194dc0f484 (diff) | |
download | PenguinYippies-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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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); |