tilty tilting

This commit is contained in:
KikooDX 2021-12-18 18:24:17 +01:00
parent 7a708c28f9
commit 01f46ce843
3 changed files with 10 additions and 4 deletions

View File

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

BIN
res/tilt.kble Normal file

Binary file not shown.

View File

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