blob: dfd6048162d6fbe46d7001a2e39aa023129bb386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __LIBJIN_GRAPHICS_H
#define __LIBJIN_GRAPHICS_H
#include "../modules.h"
#if LIBJIN_MODULES_RENDER
#include "canvas.h"
#include "color.h"
#include "font.h"
#include "Shapes.h"
#include "texture.h"
#include "Shader.h"
#include "window.h"
#include "Bitmap.h"
#endif // LIBJIN_MODULES_RENDER
#endif // __LIBJIN_GRAPHICS_H
|