aboutsummaryrefslogtreecommitdiff
path: root/src/screens/infoScreen.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 02:13:13 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-22 02:13:13 -0700
commitad66d7ade0528829a48ac4426d952ec882ef4329 (patch)
treea5f2b6b4d74575b4718c84c99c8861d696cb2046 /src/screens/infoScreen.h
parent18c26edd6bae8ce5bd26e0ab632086725f492871 (diff)
Started working on info screen
Diffstat (limited to 'src/screens/infoScreen.h')
-rw-r--r--src/screens/infoScreen.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/screens/infoScreen.h b/src/screens/infoScreen.h
new file mode 100644
index 0000000..83a8059
--- /dev/null
+++ b/src/screens/infoScreen.h
@@ -0,0 +1,13 @@
+#include "gameCommon.h"
+
+#ifndef INFO_SCREEN_H
+#define INFO_SCREEN_H
+
+typedef struct InfoScreen {
+} InfoScreen;
+
+void initInfoScreen(Game * game);
+void updateInfoScreen(Game * game);
+void resizeInfoScreen(Game * game, InfoScreen * infoScreen);
+
+#endif