コード例 #1
0
 public async Task Start(bool a_noTest = true)
 {
     try
     {
         m_IView.GetAmountOfPlayersIntroMessage();
         int            players    = m_IView.GetAmountOfPlayers();
         List <IPlayer> playerList = CreatePlayer(players);
         playerList = AddName(playerList);
         await Play(playerList, m_asyncDelay, a_noTest);
     }
     catch (Exception ex)
     {
         throw;
     }
 }