| 123456789101112131415161718192021 |
- //
- // shader.hpp
- // graphics
- //
- // Created by Sam Jaffe on 7/5/16.
- //
- #pragma once
- #include <string>
- #include "game/graphics/graphics_fwd.h"
- namespace graphics {
- struct shader : public identity<shader> {
- shader(unsigned int id, shaders::type, std::string const &);
- shaders::type type;
- std::string path;
- };
- }
|