aboutsummaryrefslogtreecommitdiff
path: root/src/levels/bossLevel.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-12-15 12:06:51 -0700
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-12-15 12:06:51 -0700
commitef8583564b648f6fdda73711a18b469416c1fdfc (patch)
treed25ed3fac857d192d21435f13787274a45244aca /src/levels/bossLevel.h
parent83a0e9ebe5600a431b9355ef623e57c61c220448 (diff)
Started working on the boss level
Diffstat (limited to 'src/levels/bossLevel.h')
-rw-r--r--src/levels/bossLevel.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/levels/bossLevel.h b/src/levels/bossLevel.h
new file mode 100644
index 0000000..18a67bd
--- /dev/null
+++ b/src/levels/bossLevel.h
@@ -0,0 +1,11 @@
+#include "gameCommon.h"
+#include "levels.h"
+
+#ifndef BOSS_LEVEL_H
+#define BOSS_LEVEL_H
+
+void initBossLevel(Game * game, Levels * levels);
+void closeBossLevel(Levels * levels);
+bool updateBossLevel(Game * game, Levels * levels);
+
+#endif