mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
14 lines
345 B
C#
14 lines
345 B
C#
namespace RGB.NET.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents an update trigger used to trigger device-updates.
|
|
/// </summary>
|
|
public interface IDeviceUpdateTrigger : IUpdateTrigger
|
|
{
|
|
/// <summary>
|
|
/// Indicates that there's data available to process.
|
|
/// </summary>
|
|
void TriggerHasData();
|
|
}
|
|
}
|