2018-12-31 23:20:36 +11:00
|
|
|
#ifndef SAPPHIRE_PLAYERMGR_H
|
|
|
|
#define SAPPHIRE_PLAYERMGR_H
|
|
|
|
|
2018-11-22 01:17:19 +11:00
|
|
|
#include "ForwardsZone.h"
|
2018-12-22 22:25:03 +01:00
|
|
|
#include "BaseManager.h"
|
2018-11-22 01:17:19 +11:00
|
|
|
|
|
|
|
namespace Sapphire::World::Manager
|
|
|
|
{
|
2018-12-22 22:25:03 +01:00
|
|
|
class PlayerMgr : public Manager::BaseManager
|
2018-11-22 01:17:19 +11:00
|
|
|
{
|
|
|
|
public:
|
2018-12-22 22:25:03 +01:00
|
|
|
PlayerMgr( FrameworkPtr pFw );
|
|
|
|
|
2018-11-29 16:55:48 +01:00
|
|
|
void movePlayerToLandDestination( Sapphire::Entity::Player& player, uint32_t landId, uint16_t param = 0 );
|
2018-11-22 01:17:19 +11:00
|
|
|
};
|
2018-12-31 23:20:36 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SAPPHIRE_PLAYERMGR_H
|