using System.Collections.Generic; using RGB.NET.Core; namespace RGB.NET.Devices.SteelSeries { /// /// Represents a steelseries RGB-device. /// internal interface ISteelSeriesRGBDevice : IRGBDevice { void Initialize(UpdateQueue updateQueue, Dictionary ledMapping); } }