public Pile(Field parent, int initial, Rectangle pos, string type) { this.parent = parent; initialCardAmount = initial; rectPos = pos; this.type = type; Init(); }
public Pile(Field parent, string type) { this.parent = parent; this.type = type; Init(); }
public Pile(Field parent, int initial, Rectangle pos) { this.parent = parent; initialCardAmount = initial; rectPos = pos; this.type = "stack"; Init(); }