Exemplo n.º 1
0
        static void Main(string[] args)
        {
            bool    keepPlaying = false;
            Program p1          = new Program();

            do
            {
                Console.Clear(); // clears old stuff if they choose to play again
                Game_manager mgr = new Game_manager();
                mgr.Playgame();
                keepPlaying = p1.KeepPlaying();
            } while (keepPlaying);
        }