mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-01 14:20:05 +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;
|
|
}
|
|
}
|
|
}
|