3a53349e33
Both act as the first step of AuthContext.
14 lines
256 B
C++
14 lines
256 B
C++
#pragma once
|
|
#include "AuthContext.h"
|
|
|
|
class MojangLogin : public AuthContext
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MojangLogin(AccountData * data, QString password, QObject *parent = 0);
|
|
void executeTask() override;
|
|
|
|
private:
|
|
QString m_password;
|
|
};
|