/* server/console.cc This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ #include "server/console.h" #include "core/core.h" #include namespace server { Console server_console; Console *console() { return (&server_console); } void Console::init() { con_print << "Initializing console..." << std::endl; } void Console::shutdown() { con_print << "Shutting down console..." << std::endl; } }