コード例 #1
0
ファイル: BaseControl.cs プロジェクト: swordlegend/army_ru
        public void RemoveChild(int index)
        {
            BaseControl ctrl = this.children[index];

            ctrl.OnDestroy();
            this.children.RemoveAt(index);
        }
コード例 #2
0
ファイル: BaseControl.cs プロジェクト: swordlegend/army_ru
 public void RemoveChild(BaseControl ctrl)
 {
     ctrl.OnDestroy();
     this.children.Remove(ctrl);
 }