1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00
CUE.NET/Devices/ICueDevice.cs
2015-10-03 15:10:51 +02:00

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);
}
}