c2a-core 3.9.0

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 (3)
#define C2A_CORE_VER_MINOR (9)
#define C2A_CORE_VER_PATCH (0)
#define C2A_CORE_VER_PRE   ("")

#endif