mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
21 lines
396 B
C#
21 lines
396 B
C#
using System;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.Debug;
|
|
|
|
internal sealed class DebugDeviceUpdateQueue : UpdateQueue
|
|
{
|
|
#region Constructors
|
|
|
|
public DebugDeviceUpdateQueue()
|
|
: base(new DeviceUpdateTrigger())
|
|
{ }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
protected override bool Update(in ReadOnlySpan<(object key, Color color)> dataSet) => true;
|
|
|
|
#endregion
|
|
} |