Files
somaesque-native/src/gfx/Texture.h
Daniel Ledda 50f4501c86 update
2025-01-04 19:19:01 +01:00

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