mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
14 lines
243 B
C#
14 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()
|
|
{
|
|
}
|
|
}
|
|
}
|