mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-01 07:04:32 +02:00
18 lines
368 B
C++
18 lines
368 B
C++
#include "Offline.h"
|
|
|
|
#include "minecraft/auth/steps/OfflineStep.h"
|
|
|
|
OfflineRefresh::OfflineRefresh(
|
|
AccountData *data,
|
|
QObject *parent
|
|
) : AuthFlow(data, parent) {
|
|
m_steps.append(new OfflineStep(m_data));
|
|
}
|
|
|
|
OfflineLogin::OfflineLogin(
|
|
AccountData *data,
|
|
QObject *parent
|
|
) : AuthFlow(data, parent) {
|
|
m_steps.append(new OfflineStep(m_data));
|
|
}
|