diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 02:13:13 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-22 02:13:13 -0700 |
commit | ad66d7ade0528829a48ac4426d952ec882ef4329 (patch) | |
tree | a5f2b6b4d74575b4718c84c99c8861d696cb2046 /src/screens/infoScreen.c | |
parent | 18c26edd6bae8ce5bd26e0ab632086725f492871 (diff) |
Started working on info screen
Diffstat (limited to 'src/screens/infoScreen.c')
-rw-r--r-- | src/screens/infoScreen.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/screens/infoScreen.c b/src/screens/infoScreen.c new file mode 100644 index 0000000..8d991ed --- /dev/null +++ b/src/screens/infoScreen.c @@ -0,0 +1,11 @@ +#include "infoScreen.h" +#include "game.h" + +void initInfoScreen(Game * game) { +} + +void updateInfoScreen(Game * game) { +} + +void resizeInfoScreen(Game * game, InfoScreen * infoScreen) { +} |