コード例 #1
0
		// 加入節點
		public override void Add( IComponent theComponent)
		{
			m_Childs.Add ( theComponent );
		}		
コード例 #2
0
		// 移除節點
		public override void Remove( IComponent theComponent)
		{
			m_Childs.Remove( theComponent );
		}		
コード例 #3
0
		// 移除節點
		public virtual void Remove( IComponent theComponent)
		{
			Debug.LogWarning("子類別沒實作");
		}