mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
Added missing comment and device-type
This commit is contained in:
parent
6c225bbfc4
commit
96c37a90e2
@ -83,6 +83,11 @@ namespace RGB.NET.Core
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
Speaker = 1 << 12,
|
Speaker = 1 << 12,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Represents a cooler.
|
||||||
|
/// </summary>
|
||||||
|
Cooler = 1 << 13,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents all devices.
|
/// Represents all devices.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@ -32,6 +32,7 @@ namespace RGB.NET.Devices.Corsair
|
|||||||
/// <param name="nativeInfo">The native <see cref="T:RGB.NET.Devices.Corsair.Native._CorsairDeviceInfo" />-struct</param>
|
/// <param name="nativeInfo">The native <see cref="T:RGB.NET.Devices.Corsair.Native._CorsairDeviceInfo" />-struct</param>
|
||||||
/// <param name="channelDeviceInfo">The native <see cref="T:RGB.NET.Devices.Corsair.Native._CorsairChannelDeviceInfo"/> representing this device.</param>
|
/// <param name="channelDeviceInfo">The native <see cref="T:RGB.NET.Devices.Corsair.Native._CorsairChannelDeviceInfo"/> representing this device.</param>
|
||||||
/// <param name="referenceCorsairLed">The id of the first led of this device.</param>
|
/// <param name="referenceCorsairLed">The id of the first led of this device.</param>
|
||||||
|
/// <param name="modelCounter">A dictionary containing counters to create unique names for equal devices models.</param>
|
||||||
internal CorsairCustomRGBDeviceInfo(int deviceIndex, _CorsairDeviceInfo nativeInfo, _CorsairChannelDeviceInfo channelDeviceInfo,
|
internal CorsairCustomRGBDeviceInfo(int deviceIndex, _CorsairDeviceInfo nativeInfo, _CorsairChannelDeviceInfo channelDeviceInfo,
|
||||||
CorsairLedId referenceCorsairLed, Dictionary<string, int> modelCounter)
|
CorsairLedId referenceCorsairLed, Dictionary<string, int> modelCounter)
|
||||||
: base(deviceIndex, GetDeviceType(channelDeviceInfo.type), nativeInfo,
|
: base(deviceIndex, GetDeviceType(channelDeviceInfo.type), nativeInfo,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user