This commit is contained in:
KikooDX 2021-11-12 13:46:06 +01:00
parent 925d0a1378
commit ee8b80e127
3 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,7 @@ set(LEVELS
lvl/0.kble
lvl/1.kble
lvl/2.kble
lvl/3.kble
)
set(ASSETS

BIN
lvl/3.kble Normal file

Binary file not shown.

View File

@ -12,7 +12,8 @@ static struct Level self;
extern struct LevelBin lvl_0;
extern struct LevelBin lvl_1;
extern struct LevelBin lvl_2;
static const struct LevelBin *levels[] = {&lvl_0, &lvl_1, &lvl_2, NULL};
extern struct LevelBin lvl_3;
static const struct LevelBin *levels[] = {&lvl_0, &lvl_1, &lvl_2, &lvl_3, NULL};
void
level_load(int id)