From 0f07f0aacd7a2d70fb9a12e29c575d0ab94d72f7 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 11 Oct 2023 13:39:54 -0400 Subject: [PATCH] Reduce public API of SquareLauncher --- launcher/include/squarelauncher.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/launcher/include/squarelauncher.h b/launcher/include/squarelauncher.h index 7fd4470..73f5b2d 100644 --- a/launcher/include/squarelauncher.h +++ b/launcher/include/squarelauncher.h @@ -15,14 +15,14 @@ class SquareLauncher : public QObject public: explicit SquareLauncher(LauncherCore &window, QObject *parent = nullptr); + QCoro::Task<> login(const LoginInformation &info); + +private: using StoredInfo = std::pair; QCoro::Task> getStored(const LoginInformation &info); - QCoro::Task<> login(const LoginInformation &info); - QCoro::Task<> registerSession(const LoginInformation &info); -private: static QCoro::Task getBootHash(const LoginInformation &info); Patcher *m_patcher = nullptr;