public void remove_child(GuiBound p) { if (children != null) { children.Remove(p); } }
ArrayList _children; // used by IRemoveable public void add_child(GuiBound p, string type) { p.root = this; if (children == null) { children = new ArrayList(); } children.Add(p); if (type != null) { p.type = type; } }
public void remove_child( GuiBound p ) { if( children != null ) children.Remove( p ); }
public void add_child( GuiBound p, string type ) { p.root = this; if( children == null ) children = new ArrayList(); children.Add( p ); if( type != null ) p.type = type; }