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