Beispiel #1
0
        static void Main(string[] args)
        {
            // needed to allow for output of UTF8 symbols
            Console.OutputEncoding = System.Text.Encoding.UTF8;
            // instantiate a new game
            Game game = new Game();

            // call the startGame method of game
            game.startGame();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            Game game = new Game();

            game.startGame();
        }