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