mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 18:09:59 +03:00
18 lines
409 B
C++
18 lines
409 B
C++
#include "OfflineStep.h"
|
|
|
|
#include "Application.h"
|
|
|
|
OfflineStep::OfflineStep(AccountData* data) : AuthStep(data) {}
|
|
OfflineStep::~OfflineStep() noexcept = default;
|
|
|
|
QString OfflineStep::describe() {
|
|
return tr("Creating offline account.");
|
|
}
|
|
|
|
void OfflineStep::rehydrate() {
|
|
// NOOP
|
|
}
|
|
|
|
void OfflineStep::perform() {
|
|
emit finished(AccountTaskState::STATE_WORKING, tr("Created offline account."));
|
|
}
|