Advertisement
Guest User

libs.h

a guest
Feb 23rd, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include<iostream>
  4. #include<fstream>
  5. #include<string>
  6. #include<vector>
  7. #include<glew.h>
  8. #include<glfw3.h>
  9. #include<glm.hpp>
  10. #include<vec2.hpp>
  11. #include<vec3.hpp>
  12. #include<vec4.hpp>
  13. #include<mat4x4.hpp>
  14. #include<gtc\matrix_transform.hpp>
  15. #include<gtc\type_ptr.hpp>
  16. #include<SOIL2.h>
  17. #include "Shader.h"
  18. #include "Texture.h"
  19. #include "Material.h"
  20. #include "Vertex.h"
  21. #include "Primitives.h"
  22. #include "Mesh.h"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement