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

📄 gameworldinfo.h

📁 天之炼狱1服务器端源文件游戏服务端不完整
💻 H
字号:
//----------------------------------------------------------------------//// Filename    : GameWorldInfo.h// Written By  : Reiot// Description : 肺弊牢 辑滚俊辑 爱绊 乐绰 阿 霸烙 辑滚俊 措茄 沥焊////----------------------------------------------------------------------#ifndef __GAME_WORLD_INFO_H__#define __GAME_WORLD_INFO_H__// include files#include "Types.h"#include "Exception.h"#include "StringStream.h"//----------------------------------------------------------------------//// class GameWorldInfo;//// GAME DB狼 GameWorldInfo 抛捞喉俊辑 佬绢甸牢 阿 霸烙 辑滚狼 沥焊甫// 淬篮 努贰胶捞促.////----------------------------------------------------------------------class GameWorldInfo {public :	// get/set GameWorldID	WorldID_t getID() const throw() { return m_ID; }	void setID( WorldID_t ID ) throw() { m_ID = ID; }	// get/set host name	string getName() const throw () { return m_Name; }	void setName( string Name ) throw () { m_Name = Name; }		// get/set World Status	WorldStatus getStatus() const throw() { return m_Status; }	void setStatus( WorldStatus status ) throw() { m_Status = status; } 		// get debug string	string toString () const throw () 	{		StringStream msg;		msg << "GameWorldInfo("			<< "WorldID: " << (int)m_ID			<< ",Name:" << m_Name			<< ")";		return msg.toString();	}private :	// GameWorld ID	WorldID_t m_ID;	// GameWorld Process's nick name	string m_Name;	// GameWorld status	WorldStatus m_Status;};#endif

⌨️ 快捷键说明

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