Exemplo n.º 1
0
        public Display(string item, int x, int y)
        {
            _array = new UnlimitedArray();
            _array.Add(item);

            _item = item;
            _x    = x;
            _y    = y;
        }
Exemplo n.º 2
0
 public Display(Proportion proportion)
 {
     _array     = new UnlimitedArray();
     Proportion = proportion;
 }