mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 04:37:46 +00:00
15 lines
No EOL
223 B
C++
15 lines
No EOL
223 B
C++
#pragma once
|
|
|
|
class LauncherCore;
|
|
|
|
class SteamAPI {
|
|
public:
|
|
explicit SteamAPI(LauncherCore& core);
|
|
|
|
void setLauncherMode(bool isLauncher);
|
|
|
|
[[nodiscard]] bool isDeck() const;
|
|
|
|
private:
|
|
LauncherCore& core;
|
|
}; |