Esempio n. 1
0
 public void AddChild(ServerObject child)
 {
     childs.Add(child);
 }
Esempio n. 2
0
 public ServerObject(ServerObject parent)
 {
     this.parent = parent;
     childs      = new List <ServerObject>();
     components  = new Dictionary <Type, object>();
 }