DarkflameServer/dGame/dBehaviors/OverTimeBehavior.h
2021-12-05 18:54:36 +01:00

25 lines
523 B
C++

#pragma once
#include "Behavior.h"
class OverTimeBehavior final : public Behavior
{
public:
Behavior* m_Action;
float m_Delay;
int32_t m_NumIntervals;
/*
* Inherited
*/
explicit OverTimeBehavior(const uint32_t behaviorId) : Behavior(behaviorId)
{
}
void Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
void Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) override;
void Load() override;
};