2022-08-06 03:01:59 +00:00
|
|
|
#pragma once
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "Behavior.h"
|
|
|
|
|
|
|
|
class TargetCasterBehavior final : public Behavior
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Behavior* m_action;
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
/*
|
|
|
|
* Inherited
|
|
|
|
*/
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
explicit TargetCasterBehavior(const uint32_t behavior_id) : Behavior(behavior_id) {
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Handle(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) override;
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void UnCast(BehaviorContext* context, BehaviorBranchContext branch) override;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void Calculate(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) override;
|
|
|
|
|
|
|
|
void Load() override;
|
|
|
|
};
|