// // shader.cpp // graphics // // Created by Sam Jaffe on 7/5/16. // #include "game/graphics/shader.hpp" #include "helper.hpp" using namespace graphics; shader::shader(shaders::type type, std::string const & path) : identity(shaders::init(type, path)), type(type), path(path) {}