blob: 0a36b0b1b1e1e5f207f610e3d630e4cce0efebe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "Resource.h"
#include <string>
namespace crepe::api {
class Texture : public Resource {
public:
Texture(const std::string&);
~Texture();
};
}
|