aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Map.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/headers/Map.hpp')
-rw-r--r--src/main/headers/Map.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/headers/Map.hpp b/src/main/headers/Map.hpp
new file mode 100644
index 0000000..81c456e
--- /dev/null
+++ b/src/main/headers/Map.hpp
@@ -0,0 +1,25 @@
+#ifndef MAP_HPP
+#define MAP_HPP
+
+#include "Tile.hpp"
+
+#include <vector>
+
+class Map
+{
+public:
+ const unsigned width;
+ const unsigned height;
+
+ Map();
+
+ Tile& tile(unsigned x, unsigned y);
+ const std::vector<Tile>& tiles() const;
+
+ bool moveActor(Tile &from, Tile &to);
+
+private:
+ std::vector<Tile> _tiles;
+};
+
+#endif