Ejemplo n.º 1
0
 public void yRotationAction()
 {
     if (currentPiece.possibleRotateYAxis(1))
     {
         rotateYAxis(1);
         reflectionUpdate();
         playPieceSound(pieceRotateSound);
     }
     else
     {
         playPieceSound(rejectedSound);
     }
 }