GameKit  0.0.1a
C++ gamedev tools
graphics.hpp
Go to the documentation of this file.
1 /*
2  * =====================================================================================
3  *
4  * Filename: graphics.hpp
5  *
6  * Description:
7  *
8  * Created: 23/03/2019 13:57:36
9  *
10  * Author: Quentin Bazin, <quent42340@gmail.com>
11  *
12  * =====================================================================================
13  */
14 #ifndef GK_GRAPHICS_HPP_
15 #define GK_GRAPHICS_HPP_
16 
17 #include "gk/gl/Camera.hpp"
18 #include "gk/gl/GLCheck.hpp"
19 #include "gk/gl/IDrawable.hpp"
20 #include "gk/gl/Shader.hpp"
21 #include "gk/gl/Transformable.hpp"
22 #include "gk/gl/Vertex.hpp"
23 #include "gk/gl/VertexBuffer.hpp"
24 #include "gk/gl/View.hpp"
25 
26 #include "gk/graphics/Font.hpp"
27 #include "gk/graphics/Image.hpp"
29 #include "gk/graphics/Sprite.hpp"
30 #include "gk/graphics/Text.hpp"
31 #include "gk/graphics/Tilemap.hpp"
32 
33 #endif // GK_GRAPHICS_HPP_
34