PrismLauncher/launcher/minecraft/auth/flows/Offline.h

23 lines
345 B
C
Raw Normal View History

2022-01-12 13:26:02 +00:00
#pragma once
#include "AuthFlow.h"
class OfflineRefresh : public AuthFlow
{
Q_OBJECT
public:
explicit OfflineRefresh(
AccountData *data,
QObject *parent = 0
);
};
class OfflineLogin : public AuthFlow
{
Q_OBJECT
public:
explicit OfflineLogin(
AccountData *data,
QObject *parent = 0
);
};