Subversion Repositories WoWGM

Rev

Rev 7 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef  _CGLUEMGR_H
#define  _CGLUEMGR_H

namespace WowGM {

        namespace CGlueMgr {

                void Initialize ();
                void Shutdown ();
                void RegisterConsoleCommands ();
                void UnregisterConsoleCommands ();

        }

}


class CGlueMgr {

        public:

                static void Resume (int initialized);
                static void Suspend ();
                static void Shutdown ();

        //protected:
        
                static void RegisterConsoleCommands ();
                static void UnregisterConsoleCommands ();

};

#endif// _CGLUEMGR_H