aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.h
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-10-25 05:24:51 +0000
committernathan <nathansmith@disroot.org>2025-10-25 05:24:51 +0000
commite7ef990a0a3b1ddf40a2f0d517e8eb4e261b1f80 (patch)
tree41eca7b2c9ec626b6522508efe400923165d624d /src/game.h
parent8874e4a585d66c16299ad45e79ea6c55960dee02 (diff)
downloadFindThings-e7ef990a0a3b1ddf40a2f0d517e8eb4e261b1f80.tar.gz
FindThings-e7ef990a0a3b1ddf40a2f0d517e8eb4e261b1f80.tar.bz2
FindThings-e7ef990a0a3b1ddf40a2f0d517e8eb4e261b1f80.zip
Lots of little things I should have done already
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h
index 14d6502..588937c 100644
--- a/src/game.h
+++ b/src/game.h
@@ -23,6 +23,7 @@ struct Game {
Player player;
World world;
Model skybox;
+ bool isCursorEnabled;
struct {
RenderTexture render;
@@ -36,4 +37,7 @@ void initGame(Game* game);
void updateGame(Game* game);
void closeGame(Game* game);
+void enableGameCursor(Game* game);
+void disableGameCursor(Game* game);
+
#endif