// 加入節點 public override void Add( IComponent theComponent) { m_Childs.Add ( theComponent ); }
// 移除節點 public override void Remove( IComponent theComponent) { m_Childs.Remove( theComponent ); }
// 移除節點 public virtual void Remove( IComponent theComponent) { Debug.LogWarning("子類別沒實作"); }