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
Joshua Goins 3df6e79fad When running on the Steam Deck, launcher mode is now handled
Steamworks recommends not using launchers on the Deck, but it has a
special mode that specifically enables a KB/M layout to assist - we now
enable that before launching the game.
2022-09-06 11:00:53 -04:00

12 lines
No EOL
175 B
C++

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