mirror of
https://github.com/MeexReay/minceraftOS.git
synced 2025-06-25 11:02:59 +03:00
20 lines
366 B
C++
20 lines
366 B
C++
#pragma once
|
|
#include <QObject>
|
|
|
|
#include "QObjectPtr.h"
|
|
#include "minecraft/auth/AuthStep.h"
|
|
|
|
#include <katabasis/DeviceFlow.h>
|
|
|
|
class LocalStep : public AuthStep {
|
|
Q_OBJECT
|
|
public:
|
|
explicit LocalStep(AccountData* data);
|
|
virtual ~LocalStep() noexcept;
|
|
|
|
void perform() override;
|
|
void rehydrate() override;
|
|
|
|
QString describe() override;
|
|
};
|