mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
16 lines
377 B
C++
16 lines
377 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;
|
|||
|
}
|