示例#1
0
 public void RemoveBehaviour(ITurretBehaviour behaviour)
 {
     behaviours.Remove(behaviour);
 }
示例#2
0
 public void AddBehaviour(ITurretBehaviour behaviour)
 {
     behaviours.Add(behaviour);
     behaviour.InitializeBehaviour();
 }