Esempio n. 1
0
 private void RotateCounterClockwise()
 {
     GameLogic.TetroRotateCounterClockwise();
     Draw();
 }
Esempio n. 2
0
 private void MoveLeft()
 {
     GameLogic.TetroMoveLeft();
     Draw();
 }
Esempio n. 3
0
 private void MoveRight()
 {
     GameLogic.TetroMoveRight();
     Draw();
 }
Esempio n. 4
0
 private void Fall()
 {
     GameLogic.TetroFall();
     Draw();
 }