Files
archived-g-helper/app/Gpu/IGpuControl.cs
2023-05-15 22:11:27 +02:00

10 lines
220 B
C#

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