mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 08:27:46 +00:00
18 lines
No EOL
393 B
C++
18 lines
No EOL
393 B
C++
#ifndef SAPPHIRE_PLAYERMGR_H
|
|
#define SAPPHIRE_PLAYERMGR_H
|
|
|
|
#include "ForwardsZone.h"
|
|
#include "BaseManager.h"
|
|
|
|
namespace Sapphire::World::Manager
|
|
{
|
|
class PlayerMgr : public Manager::BaseManager
|
|
{
|
|
public:
|
|
PlayerMgr( FrameworkPtr pFw );
|
|
|
|
void movePlayerToLandDestination( Sapphire::Entity::Player& player, uint32_t landId, uint16_t param = 0 );
|
|
};
|
|
}
|
|
|
|
#endif // SAPPHIRE_PLAYERMGR_H
|