DarkflameServer/dGame/dBehaviors/SpeedBehavior.h

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

27 lines
573 B
C
Raw Normal View History

#pragma once
#include "Behavior.h"
class SpeedBehavior final : public Behavior
{
public:
/*
* Inherited
*/
explicit SpeedBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
}
void Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
void Timer(BehaviorContext* context, BehaviorBranchContext branch, LWOOBJID second) override;
2022-07-28 13:39:57 +00:00
void End(BehaviorContext* context, BehaviorBranchContext branch, LWOOBJID second) override;
void Load() override;
private:
float m_RunSpeed;
bool m_AffectsCaster;
};