Esempio n. 1
0
 public void RollDice(Player player)
 {
     diceRound = new DiceRound(player);
     diceRound.Dice();
     title      = new TextLine(40, 50, 10, $"{player.Name} has rolled {diceRound.DiceResult}.");
     scoreBoard = new ScoreBoard(5, 60, 3, 25, players, roundNumber);
 }
Esempio n. 2
0
 public void AddDiceRound(DiceRound diceRound)
 {
     DiceRounds.Add(diceRound);
 }