mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-04 01:37:47 +00:00
19 lines
432 B
C++
19 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();
|
||
|
}
|