Upgraded to the latest winlibs/gcc 14.
This commit is contained in:
parent
5a6494acf5
commit
290affa49a
11 changed files with 20 additions and 13 deletions
2
map.hpp
2
map.hpp
|
@ -30,6 +30,7 @@ class Map {
|
|||
public:
|
||||
size_t $width;
|
||||
size_t $height;
|
||||
Matrix $tiles;
|
||||
Matrix $walls;
|
||||
Pathing $paths;
|
||||
std::vector<Room> $rooms;
|
||||
|
@ -42,6 +43,7 @@ public:
|
|||
Map(Map &map) = delete;
|
||||
|
||||
Matrix& paths() { return $paths.paths(); }
|
||||
Matrix& tiles() { return $tiles; }
|
||||
Matrix& input_map() { return $paths.input(); }
|
||||
Matrix& walls() { return $walls; }
|
||||
size_t width() { return $width; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue