akwk/zadanie-2_new/shader.h

11 lines
179 B
C
Raw Normal View History

2024-06-06 23:28:15 +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