mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
18 lines
353 B
C#
18 lines
353 B
C#
namespace GHelper.AutoTDP.FramerateSource
|
|
{
|
|
|
|
internal class GameInstance
|
|
{
|
|
public string? ProcessName { get; set; }
|
|
|
|
public int ProcessID { get; set; }
|
|
}
|
|
|
|
internal interface IFramerateSource
|
|
{
|
|
public double GetFramerate(GameInstance instance);
|
|
|
|
public List<GameInstance> GetRunningGames();
|
|
}
|
|
}
|