Files
Editor2D/include/Level.hpp
2025-05-20 03:26:29 -05:00

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:
};