Exemplo n.º 1
0
        public Piece(int x, int y, int id, Taquin parent)
        {
            this.parent = parent;

            this.Location    = new Point(x, y);
            this.Destination = new Point(x, y);
            this.Id          = id;
        }
Exemplo n.º 2
0
 public Piece(int x, int y, Taquin parent) : this(x, y, 0, parent)
 {
 }