示例#1
0
 public void AssignPlayersToStation(string stationName)
 {
     if (PlayerCount == 2)
     {
         //Assign players to a station
         Player1.AssignStation(stationName);
         Player2.AssignStation(stationName);
     }
 }
        public void AssignPlayersToStation(string stationName)
        {
            if (PlayerCount == 2)
            {
                //Assign players to a station
                Player1.AssignStation(stationName);
                Player2.AssignStation(stationName);

                //if the organizer window is open, update the scoreboard if the primary stream was just assigned...
                Stations.Instance.NewAssignment(stationName, Player1, Player2, this);
            }
        }