pollymc/launcher/minecraft/auth/steps/CustomProfileStep.h

23 lines
472 B
C
Raw Normal View History

2023-06-20 14:35:02 -04:00
#pragma once
#include <QObject>
#include "QObjectPtr.h"
#include "minecraft/auth/AuthStep.h"
class CustomProfileStep : public AuthStep {
Q_OBJECT
public:
explicit CustomProfileStep(AccountData *data);
virtual ~CustomProfileStep() noexcept;
void perform() override;
void rehydrate() override;
QString describe() override;
private slots:
void onRequestDone(QNetworkReply::NetworkError, QByteArray, QList<QNetworkReply::RawHeaderPair>);
};