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