1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
matabstrix/src/shader.hpp
2015-11-13 14:57:45 +00:00

20 lines
248 B
C++

#ifndef _SHADER_HPP_
#define _SHADER_HPP_
#include "gl.hpp"
#include "resource.hpp"
#include <string>
struct Shader:
Resource
{
RESOURCE(Shader)
inline GLuint id() const { return _id; };
private:
GLuint _id;
};
#endif // _SHADER_HPP_