akwk/zadanie-3/shader.h

11 lines
179 B
C
Raw Normal View History

2024-06-28 17:01:29 +02:00
#ifndef SHADER_H
#define SHADER_H
class Shader
{
public:
unsigned int ID;
Shader(const char* vertexPath,const char* fragmentPath);
unsigned int programID();
};
#endif