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

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

            game.Play();

            game = new Football();
            game.Play();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            Game football = new Football();

            football.PlayGame();
            Game basketball = new Basketball();

            basketball.PlayGame();
        }
Exemplo n.º 4
0
        static void Main(string[] args)
        {
            Game game = new Cricket();

            game.Play();
            Console.WriteLine("");
            game = new Football();
            game.Play();

            Console.Read();
        }