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

22 lines
467 B
C
Raw Permalink Normal View History

#pragma once
#include "Behavior.h"
class EndBehavior final : public Behavior
{
public:
uint32_t m_startBehavior;
2022-07-28 08:39:57 -05:00
/*
* Inherited
*/
explicit EndBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
}
2022-07-28 08:39:57 -05:00
void Handle(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
2022-07-28 08:39:57 -05:00
void Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
void Load() override;
};