Rehti MMORPG  1.0.0
Rehti MMORPG is a free and open source MMORPG game.
MapReader.hpp
Go to the documentation of this file.
1 #pragma once
2 
7 #include <vector>
8 #include <string>
9 
14 std::vector<std::vector<uint8_t>> fetchAccessMatrix();
15 
20 std::vector<std::vector<int>> fetchHeightMatrix();
21 
26 std::vector<std::vector<int>> fetchMapTextureMatrix();
27 
32 std::vector<std::vector<std::string>> fetchAreaMatrix();
std::vector< std::vector< int > > fetchHeightMatrix()
Loads the height map from the given path.
Definition: MapReader.cpp:29
std::vector< std::vector< uint8_t > > fetchAccessMatrix()
Loads the access map from the given path.
Definition: MapReader.cpp:10
std::vector< std::vector< std::string > > fetchAreaMatrix()
Loads the area map from the given path.
Definition: MapReader.cpp:67
std::vector< std::vector< int > > fetchMapTextureMatrix()
Loads the map texture map from the given path.
Definition: MapReader.cpp:48