mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 20:27:45 +00:00
Giant commit overhauling the interface to use KDE's Kirigami framework, which is based on Qt Quick. The logic is all but rewritten, allowing accounts to be separate from profiles.
18 lines
No EOL
287 B
C++
18 lines
No EOL
287 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
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;
|
|
}; |