Move shaders declaration to shaders.h

This commit is contained in:
2024-08-18 22:18:12 +01:00
parent ec98a033eb
commit 760d9b6b9c
2 changed files with 7 additions and 6 deletions

View File

@@ -1,6 +1,13 @@
#ifndef SHADERS_H
#define SHADERS_H
#include "shader.h"
extern ShaderID perspective_phong;
extern ShaderID perspective_albedo;
extern ShaderID orthographic_phong;
extern ShaderID orthographic_albedo;
void load_shaders(void);
#endif // SHADERS_H