diff options
Diffstat (limited to 'launcher/minecraft/auth/flows/MojangLogin.h')
-rw-r--r-- | launcher/minecraft/auth/flows/MojangLogin.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/launcher/minecraft/auth/flows/MojangLogin.h b/launcher/minecraft/auth/flows/MojangLogin.h new file mode 100644 index 00000000..2e765ae8 --- /dev/null +++ b/launcher/minecraft/auth/flows/MojangLogin.h @@ -0,0 +1,13 @@ +#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; +}; |