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