1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 09:08:34 +00:00
CUE.NET/Wrapper/ICueDevice.cs

10 lines
168 B
C#

namespace CUE.NET.Wrapper
{
public interface ICueDevice
{
IDeviceInfo DeviceInfo { get; }
void UpdateLeds(bool fullUpdate = false);
}
}