aboutsummaryrefslogtreecommitdiff
path: root/src/levels/level4.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-04 10:54:15 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-04 10:54:15 -0700
commita14e6109a5096b23f9a27bcd2010c23e9ca1753f (patch)
treee54690d0b2628d0e50f582c00659350c11e5023a /src/levels/level4.h
parent8bd37d4fe75a43deab8d6f24b481c23d7f965c5a (diff)
Started level 4
Diffstat (limited to 'src/levels/level4.h')
-rw-r--r--src/levels/level4.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/levels/level4.h b/src/levels/level4.h
new file mode 100644
index 0000000..ef46789
--- /dev/null
+++ b/src/levels/level4.h
@@ -0,0 +1,11 @@
+#include "gameCommon.h"
+#include "levels.h"
+
+#ifndef LEVEL4_H
+#define LEVEL4_H
+
+void initLevel4(Game * game, Levels * levels);
+void closelevel4(Levels * levels);
+bool updateLevel4(Game * game, Levels * levels);
+
+#endif