blob: 255616c97dd9a982c0430e0cc14b3c17c769a29a (
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 "jin_configuration.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 "Game/Game.h"
#include "Filesystem/Filesystem.h"
#include "Filesystem/Buffer.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
|