| 30 | static const std::string MINIMAP_DRAWN_FULL = "MiniMapDrawnFull"; |
| 31 | |
| 32 | static std::vector<std::string> buildMiniMapTypes() |
| 33 | { |
| 34 | std::vector<std::string> mapTypes; |
| 35 | mapTypes.push_back(MINIMAP_CAMERA); |
| 36 | mapTypes.push_back(MINIMAP_DRAWN); |
| 37 | mapTypes.push_back(MINIMAP_DRAWN_FULL); |
| 38 | return mapTypes; |
| 39 | } |
| 40 | |
| 41 | }; |
| 42 |