2017-10-18 15:49:19 +02:00
|
|
|
#ifndef _ACTIONMOUNT_H_
|
|
|
|
#define _ACTIONMOUNT_H_
|
|
|
|
|
2017-12-08 15:38:25 +01:00
|
|
|
#include "../Forwards.h"
|
2017-10-18 15:49:19 +02:00
|
|
|
#include "Action.h"
|
|
|
|
|
2017-12-08 15:38:25 +01:00
|
|
|
namespace Core {
|
|
|
|
namespace Action {
|
2017-10-18 15:49:19 +02:00
|
|
|
|
|
|
|
class ActionMount : public Action
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
public:
|
|
|
|
ActionMount();
|
|
|
|
~ActionMount();
|
|
|
|
|
2017-11-28 17:43:00 +01:00
|
|
|
ActionMount( Entity::ActorPtr pActor, uint16_t mountId );
|
2017-10-18 15:49:19 +02:00
|
|
|
|
|
|
|
void onStart() override;
|
|
|
|
void onFinish() override;
|
|
|
|
void onInterrupt() override;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-08 15:38:25 +01:00
|
|
|
#endif
|