Esempio n. 1
0
        static void Main(string[] args)
        {
            Game game = new Cricket();

            game.play();
            Console.WriteLine();
            game = new Football();
            game.play();
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            Game game = new Racing();

            game.play();
            Console.WriteLine();

            game = new Basketball();
            game.play();
            Console.WriteLine();

            game = new Football();
            game.play();

            Console.Read();
        }