diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-23 17:52:38 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-23 17:52:38 +0000 |
commit | 9ddeb5a5f14987bacf4441866c4051a5d7617d75 (patch) | |
tree | 6f7378233f778ab8ef06840d71c21fbffa07728e /src/game.h | |
parent | 8409c0fef6be37b3b5081402c1669207a1dc9ca3 (diff) | |
download | PenguinYippies-9ddeb5a5f14987bacf4441866c4051a5d7617d75.tar.gz PenguinYippies-9ddeb5a5f14987bacf4441866c4051a5d7617d75.tar.bz2 PenguinYippies-9ddeb5a5f14987bacf4441866c4051a5d7617d75.zip |
Clicky list working
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,7 @@ #include "mainMenu.h" #include "gameScreen.h" #include "assets.h" +#include "clicky.h" #ifndef GAME_H #define GAME_H @@ -19,6 +20,8 @@ typedef struct Game { MainMenu mainMenu; GameScreen gameScreen; + Clickies clickies; + // Wacky little render texture to make it look more like a unity game lmao. RenderTexture screenTexture; } Game; |