Пример #1
0
 public void Remove(WorldConfigElement world)
 {
     if (BaseIndexOf(world) >= 0)
     {
         BaseRemove(world.Name);
     }
 }
Пример #2
0
 public void Add(WorldConfigElement world)
 {
     BaseAdd(world);
     // Add custom code here.
 }
Пример #3
0
 public int IndexOf(WorldConfigElement world)
 {
     return(BaseIndexOf(world));
 }