bool FBullCowGame::IsLowercase(const FString &Guess) const
{
for (auto Letter : Guess)
{
if (!islower(Letter)) return false;
}
return true;
}
bool FBullCowGame::IsLowercase(const FString &Guess) const
{
for (auto Letter : Guess)
{
if (!islower(Letter)) return false;
}
return true;
}