mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
16 lines
291 B
C#
16 lines
291 B
C#
using CUE.NET.Devices.Generic.Enums;
|
|
|
|
namespace CUE.NET.Devices
|
|
{
|
|
public interface ICueDevice
|
|
{
|
|
IDeviceInfo DeviceInfo { get; }
|
|
|
|
UpdateMode UpdateMode { get; set; }
|
|
|
|
float UpdateFrequency { get; set; }
|
|
|
|
void Update(bool flushLeds = false);
|
|
}
|
|
}
|