c2a-core 4.0.2

Core of Command Centric Architecture
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef C2A_CORE_MAIN_H_
#define C2A_CORE_MAIN_H_

void C2A_core_init(void);
void C2A_core_main(void);

// C2A の バージョンは Semantic Versioning を採用する
// これらの番号は,リリース時に手動で合わせる
// 詳細: docs/general/release.md
#define C2A_CORE_VER_MAJOR (4)
#define C2A_CORE_VER_MINOR (0)
#define C2A_CORE_VER_PATCH (2)
#define C2A_CORE_VER_PRE   ("")

#endif