1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-08 19:57:46 +00:00
sapphire/src/world/Action/ActionMount.h

32 lines
403 B
C
Raw Normal View History

2017-10-18 15:49:19 +02:00
#ifndef _ACTIONMOUNT_H_
#define _ACTIONMOUNT_H_
#include "ForwardsZone.h"
2017-10-18 15:49:19 +02:00
#include "Action.h"
namespace Sapphire::Action
{
2017-10-18 15:49:19 +02:00
2018-10-28 21:53:21 +01:00
class ActionMount : public Action
{
private:
2017-10-18 15:49:19 +02:00
2018-10-28 21:53:21 +01:00
public:
ActionMount();
2017-10-18 15:49:19 +02:00
2018-10-28 21:53:21 +01:00
~ActionMount();
2018-10-28 21:53:21 +01:00
ActionMount( Entity::CharaPtr pActor, uint16_t mountId );
2018-10-28 21:53:21 +01:00
void onStart() override;
2018-10-28 21:53:21 +01:00
void onFinish() override;
2018-10-28 21:53:21 +01:00
void onInterrupt() override;
};
2017-10-18 15:49:19 +02:00
}
#endif