void CheckIfReturningUser() { UI.DisplayReturningUserOption(); if (UI.GetUserInput() == "1") { isReturningUser = false; } else if (UI.GetUserInput() == "2") { isReturningUser = true; } else { CheckIfReturningUser(); } }