Subversion Repositories WoWGM

Rev

Rev 32 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32 Rev 36
Line 12... Line 12...
12
	public:
12
	public:
13
 
13
 
14
		//=======================================================================
14
		//=======================================================================
15
		static bool CanPerformAction (ACTIONTYPE action);
15
		static bool CanPerformAction (ACTIONTYPE action);
16
 
16
 
17
    //===========================================================================
17
    //=============================================================================
18
    static void Initialize ();
18
    static void Initialize ();
19
		
19
		
20
		//=======================================================================
20
		//=======================================================================
21
		static void RegisterConsoleCommands ();
21
		static void RegisterConsoleCommands ();
22
 
22
 
23
    //=======================================================================
23
    //=======================================================================
24
    static void RegisterScriptFunctions ();
24
    static void RegisterScriptFunctions ();
25
 
25
 
26
    //===========================================================================
26
    //=============================================================================
27
    static void Shutdown ();
27
    static void Shutdown ();
28
 
28
 
29
		//=======================================================================
29
		//=======================================================================
30
		static void UnregisterConsoleCommands ();
30
		static void UnregisterConsoleCommands ();
31
 
31
 
32
		//=======================================================================
32
		//=======================================================================
33
		static void UnregisterScriptFunctions ();
33
		static void UnregisterScriptFunctions ();
34
 
34
 
35
  private:
35
  private:
36
 
36
 
37
    //===========================================================================
37
    //=============================================================================
38
    static void InitializeProc ();
38
    static void InitializeProc ();
39
 
39
 
40
    //===========================================================================
40
    //=============================================================================
41
    static void ShutdownProc ();
41
    static void ShutdownProc ();
42
 
42
 
43
};
43
};
44
 
44
 
45
 
45