Platformer
Platformer
include
Engine
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
LevelLoader
This class loads and creates the levels for our game.
Definition:
LevelLoader.hpp:11
LevelLoader::LoadLevel
static void LoadLevel(std::string path)
Loads the level at the given path.
Definition:
LevelLoader.cpp:10
Generated on Wed Apr 18 2018 18:57:52 for Platformer by
1.8.14