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

30 lines
453 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#ifndef _ACTIONCAST_H_
#define _ACTIONCAST_H_
#include "../Forwards.h"
2017-08-08 13:53:47 +02:00
#include "Action.h"
namespace Core {
namespace Action {
2017-08-08 13:53:47 +02:00
class ActionCast : public Action
{
private:
public:
ActionCast();
~ActionCast();
2017-11-28 17:43:00 +01:00
ActionCast( Entity::ActorPtr pActor, Entity::ActorPtr pTarget, uint16_t actionId );
2017-08-08 13:53:47 +02:00
void onStart() override;
void onFinish() override;
void onInterrupt() override;
};
}
}
#endif