Exemplo n.º 1
0
 public Pin(Player player, Field waitingField)
 {
     Player = player;
     WaitingField = WaitingField;
 }
Exemplo n.º 2
0
 public WaitingField(Player player)
 {
     Player = player;
 }
Exemplo n.º 3
0
 public ExitField(Player player) 
 {
     Player = player;
 }
Exemplo n.º 4
0
 public StartField(Player player)
 {
     Player = player;
 }
Exemplo n.º 5
0
 public FinishField(Player player) 
 {
     Player = player;
 }
Exemplo n.º 6
0
 private void MakePlayers(int amount) 
 {
     players = new Player[amount];
     for (int i = 0; i < amount; i++)
     {
         players[i] = new Player(Dice);
     }
 }