mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 14:44:31 +02:00
14 lines
364 B
C++
14 lines
364 B
C++
#include "Offline.h"
|
|
|
|
#include "minecraft/auth/steps/OfflineStep.h"
|
|
|
|
OfflineRefresh::OfflineRefresh(AccountData* data, QObject* parent) : AuthFlow(data, parent)
|
|
{
|
|
m_steps.append(makeShared<OfflineStep>(m_data));
|
|
}
|
|
|
|
OfflineLogin::OfflineLogin(AccountData* data, QObject* parent) : AuthFlow(data, parent)
|
|
{
|
|
m_steps.append(makeShared<OfflineStep>(m_data));
|
|
}
|