18 lines
268 B
C++
18 lines
268 B
C++
#include "stdafx.h"
|
|
#include "GameServer.h"
|
|
#include "AceInterface.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
srand(time(0));
|
|
|
|
//init ace interface
|
|
if (!AceInterface::initAceInterface())
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
GameServer::getSingleton()->startAndJoin(2025);
|
|
return 0;
|
|
}
|