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

21 lines
467 B
C#

using CUE.NET.Devices.Generic;
using CUE.NET.Devices.Generic.Enums;
namespace CUE.NET.Devices
{
public delegate void OnExceptionEventHandler(object sender, OnExceptionEventArgs args);
public interface ICueDevice
{
IDeviceInfo DeviceInfo { get; }
UpdateMode UpdateMode { get; set; }
float UpdateFrequency { get; set; }
event OnExceptionEventHandler OnException;
void Update(bool flushLeds = false);
}
}