aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Resource.h
blob: 620a10e2c06483d29341f0b5d1d2fe49dd92e8fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <string>

namespace crepe::api {

class Resource {
public:
	Resource(const std::string & source);
	virtual ~Resource();

private:
	std::string _source;
};

}