Simple styling of the rooms done.
This commit is contained in:
parent
5cb74151f5
commit
af2947c50a
5 changed files with 16 additions and 6 deletions
3
map.hpp
3
map.hpp
|
@ -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();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue