1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 16:37:45 +00:00
sapphire/src/servers/sapphire_zone/Action/ActionCast.h
2017-12-19 09:27:22 +01:00

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