This commit is contained in:
Daniel Ledda
2025-01-04 19:19:01 +01:00
parent 256292c20d
commit 50f4501c86
11 changed files with 3213 additions and 1484 deletions

View File

@@ -5,7 +5,8 @@ struct Texture {
unsigned int tex_id;
int width;
int height;
void init(const char* source_path);
};
Texture createTexture(const char* source_path);
#endif