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