shader.cpp 270 B

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