mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-07 17:20:19 +01:00
- This makes to autmatically swittch to controller when Playnite Fullscreen is in use. - This makes to automatically disable when Steam is in Big Picture or running Game - Indicate current status with well distinguishable icons - Expose all options via Context Menu
24 lines
415 B
C#
24 lines
415 B
C#
namespace SteamController.Profiles
|
|
{
|
|
public abstract class Profile
|
|
{
|
|
public enum Status
|
|
{
|
|
Continue,
|
|
Stop
|
|
}
|
|
|
|
public bool RunAlways { get; set; }
|
|
|
|
public abstract Status Run(Context context);
|
|
|
|
public virtual void Tick(Context context)
|
|
{
|
|
}
|
|
|
|
public virtual void Skipped(Context context)
|
|
{
|
|
}
|
|
}
|
|
}
|