Hi! I am taking unreal engine courses and I finished the game code a few days ago, but at some point it stopped running in the way it should and has after the TMap.
I thought I will be able to check my code and compare it to Ben’s and find the mistake or something I have missed. But it is totally the same, and that confuses me.
Please take a look at it and tell me what I should do with it.
Thank you so much! I will attach the link to download the game from google drive.
bool FBullCowGame::IsLowercase(FString Word) const
{
for (auto Letter : Word)
{
if (!islower(Letter)) // if not a lowercase letter
{
return false;
}
}
return false;
}