Пример #1
0
 internal static void StartNewGame(Engine engine)
 {
     engine.ClockTimer.Pause();
     engine.PlayGameTimer.Pause();
     Game.Start();
     engine.KeyPressTimer.Pause();
 }
Пример #2
0
        public static void Start()
        {
            Console.CursorVisible = false;
            Console.Title = "TETRIS by Team Chipmunk";
            Console.BackgroundColor = Game.Colors.Background;
            Console.Clear();

            Engine engine = new Engine();
            engine.Field.Draw();
        }