DarkflameServer/dGame/dBehaviors/BehaviorBranchContext.cpp

14 lines
374 B
C++
Raw Normal View History

2022-08-06 03:01:59 +00:00
#include "BehaviorBranchContext.h"
2022-07-28 13:39:57 +00:00
BehaviorBranchContext::BehaviorBranchContext() {
this->isProjectile = false;
}
2022-07-28 13:39:57 +00:00
BehaviorBranchContext::BehaviorBranchContext(const LWOOBJID target, const float duration, const NiPoint3& referencePosition) {
this->target = target;
this->duration = duration;
this->referencePosition = referencePosition;
this->isProjectile = false;
}