19 lines
273 B
C++
19 lines
273 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
#include <TileLayer.hpp>
|
|
|
|
class Level {
|
|
public:
|
|
std::string name;
|
|
std::string description;
|
|
std::string author;
|
|
std::vector<std::string> tags;
|
|
|
|
std::vector<TileLayer> tile_layers;
|
|
|
|
|
|
protected:
|
|
private:
|
|
};
|