예제 #1
0
파일: Game.cs 프로젝트: Elmona/Blackjack
        public bool NewGame()
        {
            bool response = m_dealer.NewGame(m_player);

            return(response);
        }
예제 #2
0
 public bool NewGame()
 {
     return(m_dealer.NewGame(m_player));
 }