blob: 210dadf1894a97252480a384fa1fb7accc6cb38a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __JIN_GRAPHICS_H
#define __JIN_GRAPHICS_H
#include "../modules.h"
#if JIN_MODULES_RENDER
#include "canvas.h"
#include "color.h"
#include "font.h"
#include "Shapes.h"
#include "texture.h"
#include "jsl.h"
#include "window.h"
#endif // JIN_MODULES_RENDER
#endif // __JIN_GRAPHICS_H
|