mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2025-01-03 23:37:34 +00:00
14 lines
222 B
C++
14 lines
222 B
C++
#pragma once
|
|
#include "AuthContext.h"
|
|
|
|
class MSASilent : public AuthContext
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MSASilent(
|
|
AccountData * data,
|
|
QObject *parent = 0
|
|
);
|
|
void executeTask() override;
|
|
};
|