mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
12 lines
302 B
C#
12 lines
302 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();
|
|
} |