aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft/auth/flows/Offline.h
blob: 5d1f83a46c8176b95ced91599ca631ac0fdd88b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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
    );
};