aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft/auth/flows/MSA.h
blob: 14a4ff430e0fb897ef674b06f879eb7a9274bbe9 (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 MSAInteractive : public AuthFlow
{
    Q_OBJECT
public:
    explicit MSAInteractive(
        AccountData *data,
        QObject *parent = 0
    );
};

class MSASilent : public AuthFlow
{
    Q_OBJECT
public:
    explicit MSASilent(
        AccountData * data,
        QObject *parent = 0
    );
};