11 lines
179 B
C
11 lines
179 B
C
|
#ifndef SHADER_H
|
||
|
#define SHADER_H
|
||
|
class Shader
|
||
|
{
|
||
|
public:
|
||
|
unsigned int ID;
|
||
|
Shader(const char* vertexPath,const char* fragmentPath);
|
||
|
unsigned int programID();
|
||
|
};
|
||
|
|
||
|
#endif
|