mirror of
https://github.com/MeexReay/minceraftOS.git
synced 2025-06-24 18:43:00 +03:00
18 lines
351 B
C++
18 lines
351 B
C++
#include "Local.h"
|
|
|
|
#include "minecraft/auth/steps/LocalStep.h"
|
|
|
|
LocalRefresh::LocalRefresh(
|
|
AccountData *data,
|
|
QObject *parent
|
|
) : AuthFlow(data, parent) {
|
|
m_steps.append(new LocalStep(m_data));
|
|
}
|
|
|
|
LocalLogin::LocalLogin(
|
|
AccountData *data,
|
|
QObject *parent
|
|
): AuthFlow(data, parent) {
|
|
m_steps.append(new LocalStep(m_data));
|
|
}
|