1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 21:07:45 +00:00
astra/launcher/core/include/steamapi.h

15 lines
No EOL
209 B
C++

#pragma once
class LauncherCore;
class SteamAPI {
public:
explicit SteamAPI(LauncherCore& core);
void setLauncherMode(bool isLauncher);
bool isDeck() const;
private:
LauncherCore& core;
};