DarkflameServer/dGame/dBehaviors/TargetCasterBehavior.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
563 B
C
Raw Permalink Normal View History

#pragma once
#include "Behavior.h"
class TargetCasterBehavior final : public Behavior
{
public:
Behavior* m_action;
2022-07-28 13:39:57 +00:00
/*
* Inherited
*/
explicit TargetCasterBehavior(const uint32_t behavior_id) : Behavior(behavior_id) {
}
void Handle(BehaviorContext* context, RakNet::BitStream& bit_stream, BehaviorBranchContext branch) override;
void UnCast(BehaviorContext* context, BehaviorBranchContext branch) override;
void Calculate(BehaviorContext* context, RakNet::BitStream& bit_stream, BehaviorBranchContext branch) override;
void Load() override;
};