mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
7 lines
146 B
C#
7 lines
146 B
C#
namespace GHelper.Gpu;
|
|
|
|
public interface IGpuTemperatureProvider : IDisposable {
|
|
bool IsValid { get; }
|
|
int? GetCurrentTemperature();
|
|
}
|