mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-29 22:24:26 +02:00
9 lines
169 B
C++
9 lines
169 B
C++
#pragma once
|
|
#include "AuthFlow.h"
|
|
|
|
class OfflineLogin : public AuthFlow {
|
|
Q_OBJECT
|
|
public:
|
|
explicit OfflineLogin(AccountData* data, QObject* parent = 0);
|
|
};
|