13 lines
182 B
C
13 lines
182 B
C
#ifndef LEDDA_TEXTURE_H
|
|
#define LEDDA_TEXTURE_H
|
|
|
|
struct Texture {
|
|
unsigned int tex_id;
|
|
int width;
|
|
int height;
|
|
};
|
|
|
|
Texture createTexture(const char* source_path);
|
|
|
|
#endif
|