blob: 06e4e4ce23fbb8ee82d7aee20f0c2293311427f9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "AuthContext.h"
class MojangRefresh : public AuthContext
{
Q_OBJECT
public:
explicit MojangRefresh(AccountData *data, QObject *parent = 0);
void executeTask() override;
};
|