mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-06 16:50:07 +01:00
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);
|
||
|
|
}
|
||
|
|
}
|