blob: 32c04c7279786e553201c8e46bb3967ae419ee78 (
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 "fs/fs.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
|