DarkflameServer/dGame/dBehaviors/SwitchMultipleBehavior.h

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

24 lines
543 B
C
Raw Normal View History

#pragma once
#include "Behavior.h"
#include <vector>
class SwitchMultipleBehavior final : public Behavior
{
public:
std::vector<std::pair<float, Behavior*>> m_behaviors;
2022-07-28 13:39:57 +00:00
/*
* Inherited
*/
explicit SwitchMultipleBehavior(const uint32_t behavior_id) : Behavior(behavior_id) {
}
void Handle(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) override;
void Calculate(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) override;
void Load() override;
};