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