mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 14:57:44 +00:00
28 lines
449 B
C
28 lines
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
|