Пример #1
0
        public void Init()
        {
            randomSeed = new Random();
            testGame = new Monopoly(randomSeed);

            testGame.CreatePlayers(new List<string>()
            {
                "Horse",
                "Car"
            });

            testGame.CreatePlayerOrder();
        }
 public void Init()
 {
     testRandom = new Random();
     testGame = new Monopoly(testRandom);
     testPlayer = new Player(testGame, "Hat");
 }
Пример #3
0
 public Player(Monopoly game, string gamePiece)
 {
     this.game = game;
     Name = gamePiece;
 }