private void RotateCounterClockwise() { GameLogic.TetroRotateCounterClockwise(); Draw(); }
private void MoveLeft() { GameLogic.TetroMoveLeft(); Draw(); }
private void MoveRight() { GameLogic.TetroMoveRight(); Draw(); }
private void Fall() { GameLogic.TetroFall(); Draw(); }