cavy caving

This commit is contained in:
KikooDX 2021-12-19 17:53:43 +01:00
parent e0a4d3393c
commit 3dbdf0bf2e
3 changed files with 4 additions and 2 deletions

View File

@ -29,6 +29,7 @@ set(ASSETS
res/worm.kble
res/shake.kble
res/tilt.kble
res/cave.kble
res/fonts/dina.png
)

BIN
res/cave.kble Normal file

Binary file not shown.

View File

@ -12,14 +12,15 @@ static struct Level level;
extern bopti_image_t bimg_tileset;
extern struct LevelBin kble_test, kble_burn, kble_bounce, kble_worm, kble_shake,
kble_tilt;
kble_tilt, kble_cave;
static const struct LevelBinNamed levels[] = {
{&kble_test, "gentle introduction"},
{&kble_cave, "light at the end of the tunnel"},
{&kble_burn, "these are rare"},
{&kble_bounce, "deceptive road"},
{&kble_worm, "under your skin"},
{&kble_shake, "breaking into reality"},
{&kble_tilt, "tilted"},
{&kble_worm, "under your skin"},
{NULL, NULL}};
static void level_free(void);