steam-deck-tools/SteamController/Managers/Manager.cs
Kamil Trzciński ab5bc370df Introduce inheritable Profiles and Managers
- 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
2022-11-26 10:19:50 +01:00

10 lines
170 B
C#

using SteamController.Profiles;
namespace SteamController.Managers
{
public abstract class Manager
{
public abstract void Tick(Context context);
}
}