Files
2022-10-26 12:25:11 +08:00

21 lines
229 B
C++

// ShopServer.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "ShopMain.h"
int _tmain(int argc, _TCHAR* argv[])
{
bool nRet = _instance(CShopMain)->ServerStart();
if(nRet)
{
}
else
{
}
return 0;
}