Subversion Repositories WoWGM

Rev

Rev 6 | Go to most recent revision | Details | 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
/****************************************************************************
7
*
8
*	Memory addresses
9
*
10
***/
11
#define NETCLIENT__SEND	0x00632B50;
12
 
13
 
14
enum NETMESSAGE
15
{
16
	MSG_NULLACTION				= 0x0,
17
	CMSG_BOOTME					= 0x1,
18
	CMSG_CREATEMONSTER			= 0xFA,
19
	CMSG_MOVE_CHARACTER_CHEAT	= 0xD,
20
	SMSG_MOVE_CHARACTER_CHEAT	= 0xE,
21
	CMSG_RECHARGE				= 0xF,
22
	CMSG_GODMODE				= 0x22,
23
	CMSG_SERVERINFO				= 0x000004F4,
24
	SMSG_SERVERINFO				= 0x000004F5
25
};
26
 
27
 
28
class NetClient
29
{
30
 
31
	public:
32
 
33
		static void Send(CDataStore* msg);
34
 
35
};
36
 
37
#endif // ifndef _NETCLIENT_H_