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