/* * Copyright (C) 2016+ AzerothCore , released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2008-2016 TrinityCore * Copyright (C) 2005-2009 MaNGOS */ /// \addtogroup Trinityd /// @{ /// \file #ifndef _MASTER_H #define _MASTER_H #include "Common.h" /// Start the server class Master { public: int Run(); private: bool _StartDB(); void _StopDB(); void ClearOnlineAccounts(); }; #define sMaster ACE_Singleton::instance() #endif /// @}