Simple styling of the rooms done.

This commit is contained in:
Zed A. Shaw 2025-05-25 12:12:08 -04:00
parent 5cb74151f5
commit af2947c50a
5 changed files with 16 additions and 6 deletions

View file

@ -37,6 +37,8 @@ public:
Matrix& paths() { return $paths.paths(); }
Matrix& input_map() { return $paths.input(); }
Matrix& walls() { return $walls; }
Matrix& tiles() { return $tiles; }
std::vector<Room>& rooms() { return $rooms; }
size_t width() { return $width; }
size_t height() { return $height; }
int distance(Point to) { return $paths.distance(to); }
@ -64,7 +66,6 @@ public:
bool INVARIANT();
void init_tiles();
Matrix& tiles();
void add_room(Room &room);
void invert_space();
};