mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
21 lines
505 B
C#
21 lines
505 B
C#
using System;
|
|
|
|
namespace RGB.NET.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents a trigger causing an update.
|
|
/// </summary>
|
|
public interface IUpdateTrigger : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Occurs when the trigger is starting up.
|
|
/// </summary>
|
|
event EventHandler<CustomUpdateData> Starting;
|
|
|
|
/// <summary>
|
|
/// Occurs when the trigger wants to cause an update.
|
|
/// </summary>
|
|
event EventHandler<CustomUpdateData> Update;
|
|
}
|
|
}
|