Subversion Repositories WoWGM

Rev

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

Rev Author Line No. Line
3 tristanc 1
#ifndef  _CGLUEMGR_H
2
#define  _CGLUEMGR_H
3
 
4
namespace WowGM {
5
 
6
	namespace CGlueMgr {
7
 
8
		void Initialize ();
9
		void Shutdown ();
10
		void RegisterConsoleCommands ();
11
		void UnregisterConsoleCommands ();
12
 
13
	}
14
 
15
}
16
 
17
 
18
class CGlueMgr {
19
 
20
	public:
21
 
22
		static void Resume (int initialized);
23
		static void Suspend ();
24
		static void Shutdown ();
25
 
26
	//protected:
27
 
28
		static void RegisterConsoleCommands ();
29
		static void UnregisterConsoleCommands ();
30
 
31
};
32
 
33
#endif// _CGLUEMGR_H