aboutsummaryrefslogtreecommitdiff
path: root/src/levels/level9.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-11 15:38:12 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-11 15:38:12 -0700
commitd08baeaf02588f6ca3c6933db976b4858c539955 (patch)
tree449cf7774d2a784d2556b91dbe22a89a1202ff18 /src/levels/level9.h
parent9e8ea2f80cbeff8341a7fbda2cf572697918808f (diff)
Added level 9
Diffstat (limited to 'src/levels/level9.h')
-rw-r--r--src/levels/level9.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/levels/level9.h b/src/levels/level9.h
new file mode 100644
index 0000000..75ffe06
--- /dev/null
+++ b/src/levels/level9.h
@@ -0,0 +1,11 @@
+#include "gameCommon.h"
+#include "levels.h"
+
+#ifndef LEVEL9_H
+#define LEVEL9_H
+
+void initLevel9(Game * game, Levels * levels);
+void closelevel9(Levels * levels);
+bool updateLevel9(Game * game, Levels * levels);
+
+#endif