blob: e51051ed8c761598c7d60f64544461cfc9879e9d (
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
|