mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-02 01:09:57 -06:00
14 lines
374 B
C++
14 lines
374 B
C++
#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;
|
|
}
|