DarkflameServer/dGame/dBehaviors/SwitchBehavior.h

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

32 lines
596 B
C
Raw Permalink Normal View History

#pragma once
#include "Behavior.h"
class SwitchBehavior final : public Behavior
{
public:
Behavior* m_actionTrue;
Behavior* m_actionFalse;
uint32_t m_imagination;
bool m_isEnemyFaction;
int32_t m_targetHasBuff;
2022-07-28 13:39:57 +00:00
float m_Distance;
/*
* Inherited
*/
explicit SwitchBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
}
void Handle(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
void Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
void Load() override;
};