Subversion Repositories WoWGM

Rev

Rev 31 | Rev 36 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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