Subversion Repositories WoWGM

Rev

Rev 31 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 tristanc 1
#ifndef  _GAMEUI_H_
2
#define  _GAMEUI_H_
3
 
4
 
5
enum ACTIONTYPE {
6
	ACTION_NULL	= 0
7
};
8
 
9
 
10
namespace WowGM {
11
 
12
	namespace CGGameUI {
13
 
14
		//=======================================================================
15
		void Initialize ();
16
 
17
		//=======================================================================
18
		void Shutdown ();
19
 
20
	}
21
 
22
}
23
 
24
class CGGameUI {
25
 
26
	public:
27
 
28
		//=======================================================================
29
		static bool __cdecl CanPerformAction (ACTIONTYPE action);
30
 
31
		//=======================================================================
32
		static void __cdecl RegisterConsoleCommands ();
33
 
34
		//=======================================================================
35
		static void __cdecl UnregisterConsoleCommands ();
36
 
37
		//=======================================================================
38
		static void __cdecl RegisterScriptFunctions ();
39
 
40
		//=======================================================================
41
		static void __cdecl UnregisterScriptFunctions ();
42
 
43
};
44
 
45
 
46
#endif // ifndef _GAMEUI_H_