DarkflameServer/dGame/dBehaviors/ChangeOrientationBehavior.h

26 lines
528 B
C
Raw Normal View History

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