| 12345678910111213141516171819202122 |
- //
- // shader.hpp
- // graphics
- //
- // Created by Sam Jaffe on 7/5/16.
- //
- #pragma once
- #include "game/util/identity.hpp"
- #include <string>
- namespace graphics {
- class shader : public identity<shader> {
- public:
- static shader create(unsigned int type, std::string const & path);
- private:
- shader(unsigned int);
- };
- }
|