Subversion Repositories WoWGM

Rev

Rev 3 | 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  _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
		//=======================================================================
31 tristanc 29
		static bool CanPerformAction (ACTIONTYPE action);
3 tristanc 30
 
31
		//=======================================================================
31 tristanc 32
		static void RegisterConsoleCommands ();
3 tristanc 33
 
34
		//=======================================================================
31 tristanc 35
		static void UnregisterConsoleCommands ();
3 tristanc 36
 
37
		//=======================================================================
31 tristanc 38
		static void RegisterScriptFunctions ();
3 tristanc 39
 
40
		//=======================================================================
31 tristanc 41
		static void UnregisterScriptFunctions ();
3 tristanc 42
 
43
};
44
 
45
 
46
#endif // ifndef _GAMEUI_H_