mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-02 14:50:20 +01:00
13 lines
305 B
C#
13 lines
305 B
C#
using CommonHelpers;
|
|
|
|
namespace SteamController.Managers
|
|
{
|
|
public sealed class RTSSManager : Manager
|
|
{
|
|
public override void Tick(Context context)
|
|
{
|
|
context.State.RTSSInForeground = SettingsDebug.Default.DetectRTSSForeground && RTSS.IsOSDForeground();
|
|
}
|
|
}
|
|
}
|