Platformer
Platformer
LevelLoader.hpp
1 #ifndef LEVELCREATOR_HPP
2 #define LEVELCREATOR_HPP
3 
4 #include <memory>
5 #include <string>
6 #include <vector>
7 
11 class LevelLoader {
12  public:
16  static void LoadLevel(
17  std::string path);
18 };
19 
20 #endif
This class loads and creates the levels for our game.
Definition: LevelLoader.hpp:11
static void LoadLevel(std::string path)
Loads the level at the given path.
Definition: LevelLoader.cpp:10