增加ACE安全测试工程

This commit is contained in:
2025-12-06 16:42:21 +08:00
parent b78ee53326
commit b38ad590a9
68 changed files with 5385 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "stdafx.h"
#include "GameServer.h"
#include "AceInterface.h"
int main(int argc, char* argv[])
{
//init ace interface
if (!AceInterface::initAceInterface())
{
return -1;
}
GameServer::getSingleton()->startAndJoin(2025);
return 0;
}