mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 21:07:45 +00:00
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.
12 lines
No EOL
175 B
C++
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;
|
|
}; |