Exemple #1
0
        public Game()
        {
            Console.SetWindowSize(80, 30);
            EngineFunctions.AdjustColorPalette();

            startMenu = new Menu();

            musicThread = new Thread(new ThreadStart(PlayMusic));
            musicThread.IsBackground = true;
            //musicThread.Start();
            //while (!musicThread.IsAlive) ;
        }