I believe I have the code installed correctly and it runs without errors, but when I type in my first word and hit ‘enter’ it does a Forced Quit and closes the game.
Game worked fine until I started adding this lecture.
Hi @AmyJ
I didnt start with the unreal-course yet, but I think you miss a loop in your main()-function.
int main(){
bool condition=true;
//here comes your main game loop
while(condition){
PrintIntro();
PlayGame();
condition=AskToPlayAgain();
}
return 0;
}