1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 06:47:45 +00:00
sapphire/src/servers/Server_Zone/ActionCast.h
2017-08-08 13:53:47 +02:00

28 lines
No EOL
449 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, uint32_t actionId );
void onStart() override;
void onFinish() override;
void onInterrupt() override;
};
}
}
#endif