DarkflameServer/dGame/dBehaviors/DurationBehavior.cpp

22 lines
641 B
C++
Raw Normal View History

2022-08-06 03:01:59 +00:00
#include "DurationBehavior.h"
#include "BehaviorBranchContext.h"
#include "BehaviorContext.h"
2022-07-28 13:39:57 +00:00
void DurationBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
branch.duration = this->m_duration;
this->m_action->Handle(context, bitStream, branch);
}
2022-07-28 13:39:57 +00:00
void DurationBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
branch.duration = this->m_duration;
this->m_action->Calculate(context, bitStream, branch);
}
2022-07-28 13:39:57 +00:00
void DurationBehavior::Load() {
this->m_duration = GetFloat("duration");
this->m_action = GetAction("action");
}