aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameScreen.c
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-02-14 23:05:18 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-02-14 23:05:18 +0000
commitadf3b7635326af20e0e77d37c080ef08c64e9e91 (patch)
tree70e0b0144bccec31af7dc3f667dc73aa2c31c20c /src/gameScreen.c
parent63e4506ce8c21392e99c428afe2b285f12f78c00 (diff)
downloadPenguinYippies-adf3b7635326af20e0e77d37c080ef08c64e9e91.tar.gz
PenguinYippies-adf3b7635326af20e0e77d37c080ef08c64e9e91.tar.bz2
PenguinYippies-adf3b7635326af20e0e77d37c080ef08c64e9e91.zip
Screens added
Diffstat (limited to 'src/gameScreen.c')
-rw-r--r--src/gameScreen.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gameScreen.c b/src/gameScreen.c
new file mode 100644
index 0000000..23e12cf
--- /dev/null
+++ b/src/gameScreen.c
@@ -0,0 +1,15 @@
+#include "gameScreen.h"
+#include "game.h"
+
+void initGameScreen(GameScreen* gameScreen, Game* game)
+{
+}
+
+void updateGameScreen(GameScreen* gameScreen, Game* game)
+{
+}
+
+void closeGameScreen(GameScreen* gameScreen)
+{
+}
+