示例#1
0
文件: Game.cs 项目: Elmona/Blackjack
        public bool Hit()
        {
            bool response = m_dealer.Hit(m_player);

            return(response);
        }
示例#2
0
 public bool Hit()
 {
     return(m_dealer.Hit(m_player));
 }