mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
10 lines
169 B
C#
10 lines
169 B
C#
namespace CUE.NET.Devices
|
|
{
|
|
public interface ICueDevice
|
|
{
|
|
IDeviceInfo DeviceInfo { get; }
|
|
|
|
void UpdateLeds(bool forceUpdate = false);
|
|
}
|
|
}
|