diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-09 02:23:05 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-09 02:23:05 -0600 |
commit | 23be929353d4583edbd8621cd755f8a636c3fd90 (patch) | |
tree | 36d7502dbe628502eb7708c4617d1931420c8a66 /src/gameScreen.c | |
parent | 708072e716e7ab22a37f528311a433f195f75054 (diff) |
soldato asset added
Diffstat (limited to 'src/gameScreen.c')
-rw-r--r-- | src/gameScreen.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gameScreen.c b/src/gameScreen.c index 1eb6b55..3282a8f 100644 --- a/src/gameScreen.c +++ b/src/gameScreen.c @@ -21,3 +21,12 @@ void updateGameScreen(Game * game) { EndMode3D(); } + +void openGameScreen(Game * game) { + game->screenId = SCREEN_GAME; + DisableCursor(); +} + +void closeGameScreen(Game * game) { + EnableCursor(); +} |