Files
archived-g-helper/app/Gpu/IGpuControl.cs
2023-05-01 15:12:08 +02:00

9 lines
183 B
C#

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