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

@@ -3,7 +3,8 @@
struct Shader {
unsigned int prog_id;
void init(const char* vertex_path, const char* fragment_path);
};
Shader createShader(const char* vertex_path, const char* fragment_path);
#endif