1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 08:27:46 +00:00
sapphire/src/servers/sapphire_zone/Action/ActionCast.h

32 lines
424 B
C
Raw Normal View History

2017-08-08 13:53:47 +02:00
#ifndef _ACTIONCAST_H_
#define _ACTIONCAST_H_
#include "ForwardsZone.h"
2017-08-08 13:53:47 +02:00
#include "Action.h"
namespace Sapphire::Action
{
2017-08-08 13:53:47 +02:00
2018-10-28 21:53:21 +01:00
class ActionCast : public Action
{
private:
2017-08-08 13:53:47 +02:00
2018-10-28 21:53:21 +01:00
public:
ActionCast();
2017-08-08 13:53:47 +02:00
2018-10-28 21:53:21 +01:00
~ActionCast();
2018-10-28 21:53:21 +01:00
ActionCast( Entity::CharaPtr pActor, Entity::CharaPtr pTarget, uint16_t actionId );
2018-10-28 21:53:21 +01:00
void onStart() override;
2018-10-28 21:53:21 +01:00
void onFinish() override;
2018-10-28 21:53:21 +01:00
void onInterrupt() override;
};
2017-08-08 13:53:47 +02:00
}
#endif