mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-06 08:39:59 +01:00
14 lines
304 B
C#
14 lines
304 B
C#
|
|
using System.Diagnostics;
|
||
|
|
using SteamController.Helpers;
|
||
|
|
|
||
|
|
namespace SteamController.Managers
|
||
|
|
{
|
||
|
|
public sealed class SASManager : Manager
|
||
|
|
{
|
||
|
|
public override void Tick(Context context)
|
||
|
|
{
|
||
|
|
context.KeyboardMouseValid = ForegroundProcess.Find() is not null;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|