mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-08 02:24:39 +02:00
18 lines
285 B
C++
18 lines
285 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;
|
|
};
|