Subversion Repositories WoWGM

Rev

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

Rev Author Line No. Line
19 tristanc 1
#ifndef  _PLAYER_C_H_
2
#define  _PLAYER_C_H_
3
 
4
namespace WowGM {
5
 
32 tristanc 6
	//=========================================================================
7
	void PlayerClientInitialize ();
19 tristanc 8
 
32 tristanc 9
	//=========================================================================
10
	void PlayerClientShutdown ();
11
 
12
};
13
 
14
 
36 tristanc 15
//=============================================================================
32 tristanc 16
void PlayerClientInitialize ();
17
 
36 tristanc 18
//=============================================================================
32 tristanc 19
void PlayerClientShutdown ();
20
 
21
 
36 tristanc 22
/******************************************************************************
32 tristanc 23
*
24
*		CGPlayer_C class
25
*
26
***/
27
 
31 tristanc 28
class CGPlayer_C {
29
 
32 tristanc 30
	//=========================================================================
31
	static void PlayerInitializeMessageHandlers ();
31 tristanc 32
 
19 tristanc 33
};
34
 
35
#endif // ifndef _PLAYER_C_H_
32 tristanc 36