mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-02 06:40:21 +01:00
This adds a Steam Shortcuts, Desktop Mode, and X360 Emulation - Supports all Steam Shortcuts (including on-screen keyboard, and brightness) - Supports Desktop mode (with a scroll on left pad and left stick), and trackpoint (on right stick) - Supports X360 mode: hold Options for 1s to switch between Desktop and X360 - Holding Steam button enables Desktop like controls and stops passing all inputs to X360
20 lines
344 B
C#
20 lines
344 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 Skipped(Context context)
|
|
{
|
|
}
|
|
}
|
|
}
|