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

            game.RunGame();

            Console.Write("Please enter to exit..");
            Console.Read();
        }
Exemplo n.º 2
0
 public BullsAndCowsLogic(BullsAndCowsGame i_bullsAndCowsGame)
 {
     this.m_Game = i_bullsAndCowsGame;
 }
Exemplo n.º 3
0
 // $G$ CSS-013 (-3) Input parameters names should start with i_PascaleCase.
 public BullsAndCowsUI(BullsAndCowsGame i_bullsAndCowsGame)
 {
     this.m_Game = i_bullsAndCowsGame;
 }