DarkflameServer/dGame/dBehaviors/InterruptBehavior.h

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

24 lines
495 B
C
Raw Permalink 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
*/
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;
};