Example #1
0
 public void Remove(LayerOptions layer)
 {
     if (initialized)
     {
         throw new Exception();
     }
     layers.Remove(layer);
 }
Example #2
0
 public void Add(LayerOptions layer)
 {
     if (initialized)
     {
         throw new Exception();
     }
     layers.Add(layer);
 }