shader.hpp 332 B

123456789101112131415161718192021
  1. //
  2. // shader.hpp
  3. // graphics
  4. //
  5. // Created by Sam Jaffe on 7/5/16.
  6. //
  7. #pragma once
  8. #include <string>
  9. #include "game/graphics/graphics_fwd.h"
  10. namespace graphics {
  11. struct shader : public identity<shader> {
  12. shader(unsigned int id, shaders::type, std::string const &);
  13. shaders::type type;
  14. std::string path;
  15. };
  16. }