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/ActionCast.h

31 lines
424 B
C++

#ifndef _ACTIONCAST_H_
#define _ACTIONCAST_H_
#include "ForwardsZone.h"
#include "Action.h"
namespace Sapphire::Action
{
class ActionCast : public Action
{
private:
public:
ActionCast();
~ActionCast();
ActionCast( Entity::CharaPtr pActor, Entity::CharaPtr pTarget, uint16_t actionId );
void onStart() override;
void onFinish() override;
void onInterrupt() override;
};
}
#endif