aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/map_asset.h
blob: a3b994fc0b6f75d020534524002678511a570ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "resource.h"
#include <string>


using namespace crepe::api;

class Map : public Resource {

public:
	Map(const std::string& );
	~Map();
};