⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 globalvar.cpp

📁 国外网络游戏 《The Kingdom of the Winds》 的服务端源码C+编写 有兴趣的可以
💻 CPP
字号:
// GlobalVar.cpp: implementation of the GlobalVar class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Wox2Head.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

GlobalVar::GlobalVar()
{
	ServerON = 1;
	delay = 30;
	char temp[256];
	sprintf(temp, "Wox2 v%s Build %s", VER, BUILD );
	SetConsoleTitle(temp);
	sockopen1 = true;
	sockopen2 = true;
}

GlobalVar::~GlobalVar()
{

}



void GlobalVar::ReadINI()
{
	FILE *t;
	if((t = fopen("Wox2.ini","rb")) == NULL)
		ServerON = 0;
	else {
		fread((void *)&sed,sizeof(char),sizeof(sed),t);
	}
}

⌨️ 快捷键说明

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