public void Remove(WorldConfigElement world) { if (BaseIndexOf(world) >= 0) { BaseRemove(world.Name); } }
public void Add(WorldConfigElement world) { BaseAdd(world); // Add custom code here. }
public int IndexOf(WorldConfigElement world) { return(BaseIndexOf(world)); }