mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
28 lines
590 B
C
28 lines
590 B
C
|
#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;
|
||
|
|
||
|
void End(BehaviorContext* context, BehaviorBranchContext branch, LWOOBJID second) override;
|
||
|
|
||
|
void Load() override;
|
||
|
|
||
|
private:
|
||
|
float m_RunSpeed;
|
||
|
|
||
|
bool m_AffectsCaster;
|
||
|
};
|