Esempio n. 1
0
 public GUINode(GameObject gameObject, GUINode parent, int level)
 {
     this.gameObject = gameObject;
     this.parent     = parent;
     this.level      = level;
     children        = new List <GUINode>();
 }
Esempio n. 2
0
 public GUINode()
 {
     gameObject = null;
     parent     = null;
     children   = new List <GUINode>();
 }
Esempio n. 3
0
 public GUINode()
 {
     this.gameObject = null;
     this.parent     = null;
     this.children   = new List <GUINode>();
 }