Beispiel #1
0
 public void AddBehaviour(EntityBehaviour behaviour)
 {
     if (!entityBehaviours.Contains(behaviour))
     {
         entityBehaviours.Add(behaviour);
     }
 }
Beispiel #2
0
 public void RemoveBehaviour(EntityBehaviour behaviour)
 {
     entityBehaviours.Remove(behaviour);
 }