mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-02-03 14:14:21 +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();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|