mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-02 15:44:28 +02:00
11 lines
207 B
C++
11 lines
207 B
C++
#pragma once
|
|
#include "AuthContext.h"
|
|
|
|
class MojangRefresh : public AuthContext
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MojangRefresh(AccountData *data, QObject *parent = 0);
|
|
void executeTask() override;
|
|
};
|