diff options
Diffstat (limited to 'src/crepe/api/map_asset.h')
-rw-r--r-- | src/crepe/api/map_asset.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/crepe/api/map_asset.h b/src/crepe/api/map_asset.h new file mode 100644 index 0000000..a3b994f --- /dev/null +++ b/src/crepe/api/map_asset.h @@ -0,0 +1,14 @@ +#pragma once + +#include "resource.h" +#include <string> + + +using namespace crepe::api; + +class Map : public Resource { + +public: + Map(const std::string& ); + ~Map(); +}; |