示例#1
0
        public string GetPlayerName()
        {
            string playerName      = "";
            bool   inputIsNotValid = true;

            while (inputIsNotValid)
            {
                playerName      = m_UIhandler.GetNameFromUser();
                inputIsNotValid = playerName.Length == 0;
            }

            return(playerName);
        }