akwk/zadanie-2/shader.h

11 lines
179 B
C
Raw Permalink Normal View History

2024-05-03 00:12:36 +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