blob: 02298f2c2fed5f12adfce479972f1916f19612ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef ENGINE_TEXTURE_H
#define ENGINE_TEXTURE_H
class Texture {
int target;
unsigned int texture_id;
public:
Texture(int type);
~Texture();
int LoadImage(const char *path);
int LoadImage(const char **paths);
void Bind();
};
#endif /* ENGINE_TEXTURE_H */
|