From 3dbdf0bf2ea6016aa8739745cf7c59cb9765ac0c Mon Sep 17 00:00:00 2001 From: KikooDX Date: Sun, 19 Dec 2021 17:53:43 +0100 Subject: [PATCH] cavy caving --- CMakeLists.txt | 1 + res/cave.kble | Bin 0 -> 356 bytes src/level.c | 5 +++-- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 res/cave.kble diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b72d22..608be1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,7 @@ set(ASSETS res/worm.kble res/shake.kble res/tilt.kble + res/cave.kble res/fonts/dina.png ) diff --git a/res/cave.kble b/res/cave.kble new file mode 100644 index 0000000000000000000000000000000000000000..721aab85a2ab54ea68cfe6f789f83c61fec7edbd GIT binary patch literal 356 zcmZvVOA^2!2t&h6%gX8A`(Lyng7#w;PRI)gL&s&*8P85_7e-b9_%sqA^g;!Wg+`%H znHA9{&=ly1u7R^k1LOzH1iVptWSrJx_HYjkz+i#pqQ@y$rqR0c`6$Zr4FBc^+wulr literal 0 HcmV?d00001 diff --git a/src/level.c b/src/level.c index 5f143f1..f860af8 100644 --- a/src/level.c +++ b/src/level.c @@ -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);