/* game/game.cc This file is part of the Osirion project and is distributed under the terms of the GNU General Public License version 2 */ #include "game/game.h" #include "base/base.h" #include "core/core.h" #include "sys/sys.h" namespace game { void register_modules(bool register_client_modules) { con_print << "^BRegistering game modules..." << std::endl; core::Module::add("base", new base::Base()); } }