mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
12 lines
267 B
C#
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);
|
|
}
|
|
}
|