levels for the lost

This commit is contained in:
KikooDX 2021-11-12 23:46:27 +01:00
parent 4664a7c096
commit 25023f2725
4 changed files with 6 additions and 4 deletions

View File

@ -34,6 +34,8 @@ set(LEVELS
lvl/5.kble
lvl/6.kble
lvl/7.kble
lvl/8.kble
lvl/9.kble
lvl/end.kble
)

BIN
lvl/8.kble Normal file

Binary file not shown.

BIN
lvl/9.kble Normal file

Binary file not shown.

View File

@ -10,10 +10,10 @@
static struct Level self;
extern struct LevelBin lvl_0, lvl_1, lvl_2, lvl_3, lvl_4, lvl_5, lvl_6, lvl_7,
lvl_end;
static const struct LevelBin *levels[] = {&lvl_0, &lvl_1, &lvl_2, &lvl_3,
&lvl_4, &lvl_5, &lvl_6, &lvl_7,
&lvl_end, NULL};
lvl_8, lvl_9, lvl_end;
static const struct LevelBin *levels[] = {&lvl_0, &lvl_1, &lvl_2, &lvl_3,
&lvl_4, &lvl_5, &lvl_6, &lvl_7,
&lvl_8, &lvl_9, &lvl_end, NULL};
void
level_load(int id)