예제 #1
0
파일: Piece.cs 프로젝트: slava-sh/yellow
 private Piece(Cell pivot, Tetromino tetromino, Rotation rotation)
 {
     this.pivot     = pivot;
     this.tetromino = tetromino;
     this.rotation  = rotation;
 }
예제 #2
0
파일: Piece.cs 프로젝트: slava-sh/yellow
 public Piece(Cell pivot, Tetromino tetromino) :
     this(pivot, tetromino, Rotation.Default)
 {
 }