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

📄 smsgtypescomm.h

📁 游戏《家园》源码
💻 H
字号:
#ifndef _SMsgTypesComm_H_
#define _SMsgTypesComm_H_

//
// SmallMessage Common message types
// These values must be fixed in order to communiucate message
// structures to client.  For this reason, each enum value except
// for 'max' must have an assigned value.

// NEVER change an existing enum value and always add new values to
// the end!!!!


namespace WONMsg
{
	enum MsgTypeSmallsComm
	{
		// Common Messages
		SmallCommMin         = 0,
		SmallCommUndefined   = SmallCommMin,

		SmallCommRegisterRequest   = SmallCommMin+1,
		SmallCommRegisterRequestEx = SmallCommMin+2,

		SmallCommStatusReply       = SmallCommMin+15, // Firewall Server had already used this value...

		// Last Message type.  Don't use
		SmallCommMax
	};

};

#endif

⌨️ 快捷键说明

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