Пример #1
0
 public Pile(Field parent, int initial, Rectangle pos, string type)
 {
     this.parent = parent;
     initialCardAmount = initial;
     rectPos = pos;
     this.type = type;
     Init();
 }
Пример #2
0
 public Pile(Field parent, string type)
 {
     this.parent = parent;
     this.type = type;
     Init();
 }
Пример #3
0
 public Pile(Field parent, int initial, Rectangle pos)
 {
     this.parent = parent;
     initialCardAmount = initial;
     rectPos = pos;
     this.type = "stack";
     Init();
 }