1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00

12 lines
267 B
C#

using System;
using RGB.NET.Core;
namespace RGB.NET.Devices.SoIP.Generic
{
// ReSharper disable once InconsistentNaming
internal interface ISoIPRGBDevice : IRGBDevice, IDisposable
{
void Initialize(IDeviceUpdateTrigger updateTrigger);
}
}