mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
- There's always a single Profile choosen - There are many Managers changing settings depending on environment - Improve and re-use mappings between profiles - Introduce Steam Profile to be used when in Steam Big Picture or Steam Game
10 lines
170 B
C#
10 lines
170 B
C#
using SteamController.Profiles;
|
|
|
|
namespace SteamController.Managers
|
|
{
|
|
public abstract class Manager
|
|
{
|
|
public abstract void Tick(Context context);
|
|
}
|
|
}
|