mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-29 22:24:26 +02:00
16 lines
292 B
C++
16 lines
292 B
C++
#pragma once
|
|
#include <QObject>
|
|
|
|
#include "minecraft/auth/AuthStep.h"
|
|
|
|
class OfflineStep : public AuthStep {
|
|
Q_OBJECT
|
|
public:
|
|
explicit OfflineStep(AccountData* data);
|
|
virtual ~OfflineStep() noexcept = default;
|
|
|
|
void perform() override;
|
|
|
|
QString describe() override;
|
|
};
|