// SPDX-FileCopyrightText: 2023 Joshua Goins // SPDX-License-Identifier: GPL-3.0-or-later #pragma once #include class LauncherCore; class SteamAPI : public QObject { public: explicit SteamAPI(LauncherCore &core, QObject *parent = nullptr); void setLauncherMode(bool isLauncher); [[nodiscard]] bool isDeck() const; private: LauncherCore &core; };