DarkflameServer/dGame/dBehaviors/VerifyBehavior.h
2022-07-28 08:39:57 -05:00

26 lines
419 B
C++

#pragma once
#include "Behavior.h"
class VerifyBehavior final : public Behavior
{
public:
bool m_rangeCheck;
bool m_blockCheck;
float m_range;
Behavior* m_action;
/*
* Inherited
*/
explicit VerifyBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
}
void Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
void Load() override;
};