diff options
Diffstat (limited to 'src/crepe/api/map_asset.cpp')
-rw-r--r-- | src/crepe/api/map_asset.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/crepe/api/map_asset.cpp b/src/crepe/api/map_asset.cpp new file mode 100644 index 0000000..bbabe2b --- /dev/null +++ b/src/crepe/api/map_asset.cpp @@ -0,0 +1,12 @@ + + + + +#include "map_asset.h" + +Map::Map(const std::string& content){ + this->m_content = content; +} + +Map::~Map(){ +} |