DarkflameServer/dGame/dBehaviors/InterruptBehavior.h

24 lines
498 B
C
Raw Normal View History

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