Subversion Repositories WoWGM

Rev

Rev 26 | Rev 32 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 tristanc 1
#ifndef  _NETCLIENT_H_
2
#define  _NETCLIENT_H_
3
 
4
#include <Engine/Base/CDataStore.h>
5
 
6
 
31 tristanc 7
enum NETMESSAGE {
25 tristanc 8
	MSG_NULLACTION            = 0x0,
9
	CMSG_BOOTME					      = 0x1,
10
	CMSG_LEARN_SPELL			    = 0x10,
11
  CMSG_CREATEMONSTER        = 0x11,
12
	CMSG_CREATEITEM				    = 0x13,
3 tristanc 13
	CMSG_MOVE_CHARACTER_CHEAT	= 0xD,
14
	SMSG_MOVE_CHARACTER_CHEAT	= 0xE,
25 tristanc 15
	CMSG_RECHARGE				      = 0xF,
16
	CMSG_GODMODE				      = 0x22,
17
	CMSG_LEVEL_CHEAT			    = 0x25,
26 tristanc 18
  CMSG_SET_SECURITY_GROUP   = 0x1EA,
25 tristanc 19
	CMSG_DECHARGE				      = 0x204,
20
	CMSG_GM_RESURRECT			    = 0x22A,
21
	SMSG_RESURRECT_FAILED		  = 0x252,
22
	CMSG_SERVERINFO				    = 0x4F4,
23
	SMSG_SERVERINFO				    = 0x4F5
3 tristanc 24
};
25
 
26
 
27
class NetClient
28
{
29
 
30
	public:
31
 
32
		static void Send(CDataStore* msg);
33
 
34
};
35
 
36
#endif // ifndef _NETCLIENT_H_