User IoHandler::printUserMenu(UserList &userList)
{
	User currentUser;
	string userName;

	char a;

	while (true){
		system("cls");

		cout << "====================================================" << endl;
		cout << "                 행맨게임을 시작합니다.             " << endl;
		cout << "====================================================" << endl;



		cout << "(기록해 둔 게임 성적을 load되거나 새로운 사용자가 등록됩니다.)" << endl;
		userName = inputName("사용자의 이름을 입력하세요 : ");

		cout << endl << endl;

		if (userList.isUserExist(userName) == true)
		{
			cout << "등록된 사용자가 있습니다. 등록된 사용자의 게임 성적을 load하려면 L을, " << endl;
			cout << "새로운 사용자 이름을 등록하려면 N을 입력하세요 [L/N] : ";
			cin >> a;

			cout << endl << endl;

			if (a == 'L' || a == 'l')
			{
				User user(userList.getUserByName(userName).getName());
				currentUser = user;

				cout << "기존 사용자 [" << currentUser.getName() << "]을/를 불러옵니다. ";
				cin >> a;
				break;
			}

			else if (a == 'N' || a == 'n')