GlPortal Class Reference  0.1.1
Source code documentation of the free and open 3D action puzzle game.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MapListLoader.hpp
Go to the documentation of this file.
1 #ifndef RADIX_MAPLISTLOADER_HPP
2 #define RADIX_MAPLISTLOADER_HPP
3 
4 #include <string>
5 #include <vector>
6 
7 namespace radix {
8 
9 class MapListLoader {
10 public:
11  static std::vector<std::string> getMapList();
12 };
13 
14 } /* namespace radix */
15 
16 #endif /* RADIX_MAPLISTLOADER_HPP */
Definition: GameController.hpp:7
static std::vector< std::string > getMapList()
Definition: MapListLoader.cpp:10
Definition: MapListLoader.hpp:9