1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-29 23:57:46 +00:00
sapphire/src/servers/sapphire_zone/Action/ActionMount.h

34 lines
388 B
C
Raw Normal View History

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