public void AddChild(GuiRenderable child)
 {
     this.guiComponent.Add(child);
     child.Manager = this;
     if (this.initialized)
         child.LoadContent();
 }
 public void RemoveChild(GuiRenderable child)
 {
     this.guiComponent.Remove(child);
     child.Manager = null;
 }