mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-04-06 06:43:49 +00:00
13 lines
243 B
C#
13 lines
243 B
C#
using SteamController.Profiles;
|
|
|
|
namespace SteamController.Managers
|
|
{
|
|
public abstract class Manager : IDisposable
|
|
{
|
|
public abstract void Tick(Context context);
|
|
|
|
public virtual void Dispose()
|
|
{
|
|
}
|
|
}
|
|
}
|