blob: 66517838e4578e8669530f44ab11203adebae5b6 (
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
|
#ifndef __LIBJIN_H
#define __LIBJIN_H
#include "modules.h"
#include "Utils/utils.h"
#ifdef LIBJIN_MODULES_AUDIO && LIBJIN_AUDIO_SDLAUDIO
#include "Audio/SDL/SDLAudio.h"
#endif // LIBJIN_MODULES_AUDIO && LIBJIN_AUDIO_SDLAUDIO
#include "Core/Core.h"
#include "Filesystem/Filesystem.h"
#include "Input/Input.h"
#include "Net/Net.h"
#include "Graphics/Graphics.h"
#include "Time/Timer.h"
#include "Thread/Thread.h"
#include "Common/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
|