1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-04 01:37:47 +00:00
sapphire/src/world/Manager/MgrUtil.cpp

18 lines
432 B
C++

#include "ForwardsZone.h"
#include <Service.h>
#include "WorldServer.h"
#include "MgrUtil.h"
#include "PlayerMgr.h"
using namespace Sapphire;
using namespace Sapphire::World::Manager;
World::Manager::PlayerMgr& Sapphire::World::Manager::playerMgr()
{
return Common::Service< World::Manager::PlayerMgr >::ref();
}
World::WorldServer& Sapphire::World::Manager::server()
{
return Common::Service< World::WorldServer >::ref();
}