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

📄 smsgtypesevent.h

📁 游戏《家园》源码
💻 H
字号:
#if !defined(TMsgTypesEvent_H)
#define TMsgTypesEvent_H

//
// Titan Event Server 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 MsgTypeEvent
	{
		// First message type.  Don't use
		EventMsgMin = 0,

		// Event Server Messages
		EventRecordEvent       = EventMsgMin + 1,
		EventStatusReply       = EventMsgMin + 2,
		EventTaggedRecordEvent = EventMsgMin + 3,
		EventTaggedStatusReply = EventMsgMin + 4,

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

};

#endif // TMsgTypesEvent_H

⌨️ 快捷键说明

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