This commit is contained in:
Charles 2001-04-18 23:12:24 +00:00
parent f338710074
commit 63598d2f73
17 changed files with 363 additions and 72 deletions

View file

@ -147,6 +147,11 @@ void CNpcPath::setPathType( u8 newPathType )
pathType = (NPC_PATH_TYPE) newPathType;
}
u8 CNpcPath::getPathType()
{
return( pathType );
}
bool CNpcPath::incPath()
{
if ( !reversePath )
@ -349,4 +354,9 @@ bool CNpcPath::thinkVertical( DVECTOR currentPos, bool *pathComplete, s32 *distX
}
return( pointChange );
}
}
CNpcWaypoint *CNpcPath::getWaypointList()
{
return( waypoint );
}