blob: b1a1725febb655185789e965af0ef6a870d16fab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef __JIN_H
#define __JIN_H
#include "utils/utils.h"
#include "audio/audio.h"
#include "core/core.h"
#include "Filesystem/Filesystem.h"
#include "input/input.h"
#include "net/net.h"
#include "render/render.h"
#define JIN_VERSION "Jin 0.1"
#define JIN_RELEASE "Jin 0.1.0"
#define JIN_VERSION_NUM 100 // 00.01.00
#define JIN_AUTHOR "Chai"
#endif
|