2 using System.Collections.Generic;
5 using DirectOutput.General.Color;
7 namespace DirectOutput.Cab.Toys.Layer
12 public class LayerDictionary<LayerElementType> : SortedDictionary<int, LayerElementType>
13 where LayerElementType : new()
24 public new LayerElementType
this[
int LayerNr]
34 LayerElementType L =
new LayerElementType();
41 base[LayerNr] = value;