21 lines
229 B
C++
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;
|
|
}
|
|
|