//Cycle Next Way Point - as it says
 private void CycleNextWayPoint()
 {
     currentWayPointIndex = patrolPath.GetNext(currentWayPointIndex);
 }