// // 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(id), type(type), path(path) {}