diff --git a/CMakeLists.txt b/CMakeLists.txt index d4caf97..02646a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,6 +26,7 @@ set(ASSETS res/bounce.kble res/worm.kble res/shake.kble + res/tilt.kble res/fonts/dina.png ) diff --git a/res/tilt.kble b/res/tilt.kble new file mode 100644 index 0000000..f3a526b Binary files /dev/null and b/res/tilt.kble differ diff --git a/src/level.c b/src/level.c index 6774211..2bc538c 100644 --- a/src/level.c +++ b/src/level.c @@ -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);