mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 00:27:44 +00:00
31 lines
424 B
C++
31 lines
424 B
C++
#ifndef _ACTIONCAST_H_
|
|
#define _ACTIONCAST_H_
|
|
|
|
#include "ForwardsZone.h"
|
|
#include "Action.h"
|
|
|
|
namespace Sapphire::Action
|
|
{
|
|
|
|
class ActionCast : public Action
|
|
{
|
|
private:
|
|
|
|
public:
|
|
ActionCast();
|
|
|
|
~ActionCast();
|
|
|
|
ActionCast( Entity::CharaPtr pActor, Entity::CharaPtr pTarget, uint16_t actionId );
|
|
|
|
void onStart() override;
|
|
|
|
void onFinish() override;
|
|
|
|
void onInterrupt() override;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|