PrismLauncher/launcher/minecraft/auth/steps/OfflineStep.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
409 B
C++
Raw Normal View History

2022-01-17 11:08:10 +00:00
#include "OfflineStep.h"
#include "Application.h"
OfflineStep::OfflineStep(AccountData* data) : AuthStep(data) {}
OfflineStep::~OfflineStep() noexcept = default;
QString OfflineStep::describe()
{
2022-01-17 11:08:10 +00:00
return tr("Creating offline account.");
}
void OfflineStep::rehydrate()
{
2022-01-17 11:08:10 +00:00
// NOOP
}
void OfflineStep::perform()
{
2022-01-17 11:08:10 +00:00
emit finished(AccountTaskState::STATE_WORKING, tr("Created offline account."));
}