blob: 69549af46ce2529ba05f8d08a2428a4c72da3abe (
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();
};
}
|