blob: 0b6a416ad3021311062d8ded417e4fbbe621135e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef __LIBJIN_H
#define __LIBJIN_H
#include "core/je_configuration.h"
#include "utils/je_utils.h"
#ifdef LIBJIN_MODULES_AUDIO && LIBJIN_AUDIO_SDLAUDIO
#include "audio/sdl/je_sdl_audio.h"
#endif // LIBJIN_MODULES_AUDIO && LIBJIN_AUDIO_SDLAUDIO
#include "game/je_game.h"
#include "filesystem/je_filesystem.h"
#include "filesystem/je_buffer.h"
#include "input/je_input.h"
#include "net/je_net.h"
#include "graphics/je_graphics.h"
#include "time/je_timer.h"
#include "thread/je_thread.h"
#include "common/je_common.h"
#define LIBJIN_VERSION "Jin 0.1";
#define LIBJIN_AUTHOR "Chai";
#define LIBJIN_RELEASE "Jin 0.1.1";
#define LIBJIN_VERSION_NUM 101;
#endif // __LIBJIN_H
|