1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 00:27:44 +00:00
sapphire/src/servers/sapphire_zone/Action/ActionMount.h

29 lines
432 B
C++

#ifndef _ACTIONMOUNT_H_
#define _ACTIONMOUNT_H_
#include "../Forwards.h"
#include "Action.h"
namespace Core {
namespace Action {
class ActionMount : public Action
{
private:
public:
ActionMount();
~ActionMount();
ActionMount( Entity::CharaPtr pActor, uint16_t mountId );
void onStart() override;
void onFinish() override;
void onInterrupt() override;
};
}
}
#endif