public void SetParent(EditorTestResultGroup parent)
 {
     this.m_ParentGroup = parent;
     if (this.m_ParentGroup != null)
     {
         this.m_ParentGroup.m_Children.Add(this);
     }
 }
 public void SetParent(EditorTestResultGroup parent)
 {
     this.m_ParentGroup = parent;
     if (this.m_ParentGroup != null)
     {
         this.m_ParentGroup.m_Children.Add(this);
     }
 }
 public EditorTestResultGroup(EditorTestResultGroup parent)
 {
     base.SetParent(parent);
 }
예제 #4
0
 public EditorTestResultGroup(EditorTestResultGroup parent)
 {
     base.SetParent(parent);
 }