1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00
sapphire/src/servers/Server_Zone/Action/ActionCast.h

29 lines
453 B
C++

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