mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-09-06 12:25:52 +00:00
22 lines
566 B
C++
22 lines
566 B
C++
#include "Elyby.h"
|
|
|
|
#include "minecraft/auth/steps/YggdrasilStep.h"
|
|
#include "minecraft/auth/steps/GetSkinStep.h"
|
|
|
|
ElybyRefresh::ElybyRefresh(
|
|
AccountData *data,
|
|
QObject *parent
|
|
) : AuthFlow(data, parent) {
|
|
m_steps.append(new YggdrasilStep(m_data, QString()));
|
|
m_steps.append(new GetSkinStep(m_data));
|
|
}
|
|
|
|
ElybyLogin::ElybyLogin(
|
|
AccountData *data,
|
|
QString password,
|
|
QObject *parent
|
|
): AuthFlow(data, parent), m_password(password) {
|
|
m_steps.append(new YggdrasilStep(m_data, m_password));
|
|
m_steps.append(new GetSkinStep(m_data));
|
|
}
|