Files
archived-g-helper/app/Gpu/IGpuControl.cs
2023-05-07 18:10:18 +02:00

9 lines
184 B
C#

namespace GHelper.Gpu;
public interface IGpuControl : IDisposable {
bool IsNvidia { get; }
bool IsValid { get; }
int? GetCurrentTemperature();
int? GetGpuUse();
}