DarkflameServer/dGame/dBehaviors/BehaviorBranchContext.cpp

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

14 lines
374 B
C++
Raw Permalink Normal View History

#include "BehaviorBranchContext.h"
BehaviorBranchContext::BehaviorBranchContext() {
this->isProjectile = false;
}
BehaviorBranchContext::BehaviorBranchContext(const LWOOBJID target, const float duration, const NiPoint3& referencePosition) {
this->target = target;
this->duration = duration;
this->referencePosition = referencePosition;
this->isProjectile = false;
}