Beispiel #1
0
 /// <summary>
 /// Moves the current piece controlled by the player.
 /// </summary>
 /// <param name="movement">X,Y amount the piece should be moved by</param>
 public void MoveCurPiece(Vector2Int movement)
 {
     if (curPiece == null)
     {
         return;
     }
     curPieceController.MovePiece(movement);
 }