blob: 46d2a2353193f5b70e510d08f5da70f1b60e654f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __JE_GRAPHICS_H__
#define __JE_GRAPHICS_H__
#include "../core/je_configuration.h"
#if defined(jin_graphics)
#include "je_canvas.h"
#include "je_color.h"
#include "je_shapes.h"
#include "je_texture.h"
#include "je_window.h"
#include "je_bitmap.h"
#include "je_image.h"
#include "shaders/je_shader.h"
#include "fonts/je_ttf.h"
#include "fonts/je_text.h"
#include "fonts/je_texture_font.h"
#include "particles/je_particle_system.h"
#endif // defined(jin_graphics)
#endif // __JE_GRAPHICS_H__
|