mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
13 lines
246 B
C#
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();
|
|
|
|
}
|