Example #1
0
 public void RemoveAllMovingBehaviours()
 {
     movingBehaviours.ForEach(MB => { SteeringBehaviors.RemoveAll(SB => SB.GetType().Equals(MB.GetType())); });
 }
Example #2
0
 public void RemoveSteeringBehaviour(SteeringBehaviour type)
 {
     SteeringBehaviors.RemoveAll(SB => SB.GetType() == type.GetType());
 }