1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 06:47:45 +00:00
sapphire/src/servers/Server_Zone/Action/ActionMount.h

28 lines
452 B
C
Raw Normal View History

2017-10-18 15:49:19 +02:00
#ifndef _ACTIONMOUNT_H_
#define _ACTIONMOUNT_H_
#include "src/servers/Server_Zone/Forwards.h"
#include "Action.h"
namespace Core { namespace Action {
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;
};
}
}
#endif