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

28 lines
449 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#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, uint32_t actionId );
void onStart() override;
void onFinish() override;
void onInterrupt() override;
};
}
}
#endif