Files
archived-g-helper/app/Gpu/IGpuControl.cs
2023-06-04 01:25:39 +02:00

13 lines
246 B
C#

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