obstacles comming properly well

This commit is contained in:
Priec
2025-11-17 21:24:10 +01:00
parent 2af725bfe7
commit cf30946c0d
3 changed files with 33 additions and 24 deletions

View File

@@ -4,16 +4,24 @@
// Crawl obstacle for CRAWL1 (2 lines tall)
static const char *OBSTACLE_CRAWL1_FRAME[] = {
"#######",
"#######",
"#######",
"#######",
"#######",
"#######"
};
// Crawl obstacle for CRAWL2 (4 lines tall)
static const char *OBSTACLE_CRAWL2_FRAME[] = {
"########",
"########",
"########",
"########"
"#######",
"#######",
"#######",
"#######",
"#######",
"#######",
"#######",
"#######"
};
enum class CrawlObstacleType { Crawl1 = 0, Crawl2, COUNT };