Refactors worldmap gen, now uses a master list of maps for backtracking

This commit is contained in:
Llywelwyn 2023-08-13 08:53:33 +01:00
parent 557b7095b9
commit 25befa9343
7 changed files with 119 additions and 48 deletions

View file

@ -5,7 +5,7 @@ pub const BLOODSTAIN_COLOUR: (u8, u8, u8) = (153, 0, 0);
pub const DEFAULT_BG_COLOUR: (u8, u8, u8) = (29, 50, 50);
pub const WALL_COLOUR: (u8, u8, u8) = (229, 191, 94);
pub const FLOOR_COLOUR: (u8, u8, u8) = (25, 204, 122);
pub const DOWN_STAIR_COLOUR: (u8, u8, u8) = (200, 200, 0);
pub const STAIR_COLOUR: (u8, u8, u8) = (200, 200, 0);
pub const WOOD_FLOOR_COLOUR: (u8, u8, u8) = (41, 30, 20);
pub const FENCE_FG_COLOUR: (u8, u8, u8) = (110, 24, 0);
pub const FENCE_COLOUR: (u8, u8, u8) = (45, 30, 10);