10 lines
145 B
C++
10 lines
145 B
C++
|
|
#include "app.hpp"
|
||
|
|
|
||
|
|
/// @brief 命令行入口
|
||
|
|
/// @return 程序退出码
|
||
|
|
int main() {
|
||
|
|
battlefield::App app;
|
||
|
|
app.Run();
|
||
|
|
return 0;
|
||
|
|
}
|