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