sneedmc/launcher/minecraft/auth/flows/MojangLogin.cpp

19 lines
406 B
C++
Raw Normal View History

#include "MojangLogin.h"
2021-11-20 15:22:22 +00:00
MojangLogin::MojangLogin(
AccountData *data,
QString password,
QObject *parent
): AuthContext(data, parent), m_password(password) {}
void MojangLogin::executeTask() {
m_requestsDone = 0;
m_xboxProfileSucceeded = false;
m_mcAuthSucceeded = false;
initMojang();
beginActivity(Katabasis::Activity::LoggingIn);
m_yggdrasil->login(m_password);
}