1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-04 09:47:46 +00:00
sapphire/src/servers/sapphire_zone/Action/ActionTeleport.h
2018-06-02 15:52:35 +02:00

31 lines
518 B
C++

#ifndef _ACTIONTELEPORT_H_
#define _ACTIONTELEPORT_H_
#include "Forwards.h"
#include "Action.h"
namespace Core {
namespace Action {
class ActionTeleport : public Action
{
private:
uint16_t m_targetAetheryte;
uint16_t m_cost;
public:
ActionTeleport();
~ActionTeleport();
ActionTeleport( Entity::CharaPtr pActor, uint16_t action, uint16_t cost );
void onStart() override;
void onFinish() override;
void onInterrupt() override;
};
}
}
#endif