OpenGL_Clock/Include/shader.h
2018-02-07 14:22:24 +01:00

6 lines
135 B
C

#ifndef SHADER_HPP
#define SHADER_HPP
GLuint LoadShaders(const char *vertex_file_path, const char *fragment_file_path);
#endif