diff options
author | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-14 22:20:30 +0000 |
---|---|---|
committer | nathansmith117 <thenathansmithsmith@gmail.com> | 2024-02-14 22:20:30 +0000 |
commit | c2d4a7939fe7f06384f9364e7877c618d9466484 (patch) | |
tree | 8676f9821c4b766cde64191a5a91f0a6f7812203 /src/game.h | |
download | PenguinYippies-c2d4a7939fe7f06384f9364e7877c618d9466484.tar.gz PenguinYippies-c2d4a7939fe7f06384f9364e7877c618d9466484.tar.bz2 PenguinYippies-c2d4a7939fe7f06384f9364e7877c618d9466484.zip |
first commit
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/game.h b/src/game.h new file mode 100644 index 0000000..5d4e58d --- /dev/null +++ b/src/game.h @@ -0,0 +1,20 @@ +#include "gameCommon.h" + +#ifndef GAME_H +#define GAME_H + +typedef enum ScreenId +{ + MAIN_MENU_SCREEN, + GAME_SCREEN +} ScreenId; + +typedef struct Game +{ +} Game; + +void initGame(Game* game); +void updateGame(Game* game); +void closeGame(Game* game); + +#endif |