server.cpp

来自「国外网游源码....除工具源码缺少之外,其余程序都全...至于,什么游戏,因为国」· C++ 代码 · 共 28 行

CPP
28
字号
// server.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "LobbyServer.h"


int main(int argc, char* argv[])
{
	try
	{
		if(g_cLobbyServer.Init())
		{
			while(1)
			{
				if(!g_cLobbyServer.Run())
					break;
			}
		}
	}
	catch(...)
	{
		MessageBox(NULL, "LobbyServer Clash!!", "Error", MB_OK | MB_ICONERROR);
	}

	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?