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

📄 tmsgtypescomm.h

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

//
// Titan 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 MsgTypeComm
	{
		// Common Messages
		CommMin               = 0,
		CommDebugLevel        = 1,
		CommTracing           = 2,
		CommMsgTimeout        = 3,
		CommRehupOptions      = 4,
		CommPing              = 5,
		CommPingReply         = 6,
		CommProtocol          = 7,
        CommProtocolReject    = 8,
		CommQueryOptions      = 9,
		CommQueryOptionsReply = 10,
		CommShutDownRequest   = 11,
		CommShutDownConfirm   = 12,
		CommShutDownConfReply = 13,
		CommRegisterRequest   = 14,
		CommStatusReply       = 15,
		CommNoOp              = 16,

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

};

#endif

⌨️ 快捷键说明

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