aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/map_asset.h
blob: a4f3df720c11e4f0e0b119a7035be91e17a32b30 (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();
};