1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
This commit is contained in:
Darth Affe 2021-11-13 18:00:48 +01:00
parent f69560224d
commit 71981a5cf3
15 changed files with 2342 additions and 2351 deletions

View File

@ -1,8 +1,8 @@
using RGB.NET.Core; using RGB.NET.Core;
using RGB.NET.Devices.Razer.Native; using RGB.NET.Devices.Razer.Native;
namespace RGB.NET.Devices.Razer namespace RGB.NET.Devices.Razer;
{
/// <summary> /// <summary>
/// Contains mappings for <see cref="LedId"/> to the matrix location. /// Contains mappings for <see cref="LedId"/> to the matrix location.
/// </summary> /// </summary>
@ -497,4 +497,3 @@ namespace RGB.NET.Devices.Razer
/// </summary> /// </summary>
public static LedMapping<int> ChromaLink { get; } = new(); public static LedMapping<int> ChromaLink { get; } = new();
} }
}

View File

@ -9,8 +9,8 @@ using RGB.NET.Core;
using RGB.NET.Devices.Razer.Native; using RGB.NET.Devices.Razer.Native;
using RGB.NET.HID; using RGB.NET.HID;
namespace RGB.NET.Devices.Razer namespace RGB.NET.Devices.Razer;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a device provider responsible for razer devices. /// Represents a device provider responsible for razer devices.
@ -302,4 +302,3 @@ namespace RGB.NET.Devices.Razer
#endregion #endregion
} }
}

View File

@ -1,7 +1,7 @@
using RGB.NET.Core; using RGB.NET.Core;
namespace RGB.NET.Devices.SteelSeries namespace RGB.NET.Devices.SteelSeries;
{
/// <summary> /// <summary>
/// Contains mappings for <see cref="LedId"/> to <see cref="SteelSeriesLedId"/>. /// Contains mappings for <see cref="LedId"/> to <see cref="SteelSeriesLedId"/>.
/// </summary> /// </summary>
@ -405,4 +405,3 @@ namespace RGB.NET.Devices.SteelSeries
{ LedId.LedStripe103, SteelSeriesLedId.ZoneOneHundredThree } { LedId.LedStripe103, SteelSeriesLedId.ZoneOneHundredThree }
}; };
} }
}

View File

@ -3,8 +3,8 @@
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member #pragma warning disable 1591 // Missing XML comment for publicly visible type or member
namespace RGB.NET.Devices.Wooting.Enum namespace RGB.NET.Devices.Wooting.Enum;
{
/// <summary> /// <summary>
/// Contains list of available physical layouts for Wooting keyboards. /// Contains list of available physical layouts for Wooting keyboards.
/// </summary> /// </summary>
@ -16,4 +16,3 @@ namespace RGB.NET.Devices.Wooting.Enum
ANSI = 0, ANSI = 0,
ISO = 1 ISO = 1
} }
}

View File

@ -3,8 +3,8 @@ using RGB.NET.Devices.Wooting.Enum;
using RGB.NET.Devices.Wooting.Helper; using RGB.NET.Devices.Wooting.Helper;
using RGB.NET.Devices.Wooting.Native; using RGB.NET.Devices.Wooting.Native;
namespace RGB.NET.Devices.Wooting.Generic namespace RGB.NET.Devices.Wooting.Generic;
{
/// <inheritdoc /> /// <inheritdoc />
/// <summary> /// <summary>
/// Represents a generic information for a Wooting-<see cref="T:RGB.NET.Core.IRGBDevice" />. /// Represents a generic information for a Wooting-<see cref="T:RGB.NET.Core.IRGBDevice" />.
@ -56,4 +56,3 @@ namespace RGB.NET.Devices.Wooting.Generic
#endregion #endregion
} }
}

View File

@ -4,8 +4,8 @@ using RGB.NET.Core;
using RGB.NET.Devices.Wooting.Enum; using RGB.NET.Devices.Wooting.Enum;
using System.Collections.Generic; using System.Collections.Generic;
namespace RGB.NET.Devices.Wooting.Keyboard namespace RGB.NET.Devices.Wooting.Keyboard;
{
/// <summary> /// <summary>
/// Contains all the hardware-id mappings for Wooting devices. /// Contains all the hardware-id mappings for Wooting devices.
/// </summary> /// </summary>
@ -241,4 +241,3 @@ namespace RGB.NET.Devices.Wooting.Keyboard
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@ using RGB.NET.Core;
using RGB.NET.Devices.Wooting.Enum; using RGB.NET.Devices.Wooting.Enum;
using RGB.NET.Devices.Wooting.Generic; using RGB.NET.Devices.Wooting.Generic;
namespace RGB.NET.Devices.Wooting.Keyboard namespace RGB.NET.Devices.Wooting.Keyboard;
{
/// <inheritdoc cref="WootingRGBDevice{TDeviceInfo}" /> /// <inheritdoc cref="WootingRGBDevice{TDeviceInfo}" />
/// <summary> /// <summary>
/// Represents a Wooting keyboard. /// Represents a Wooting keyboard.
@ -51,4 +51,3 @@ namespace RGB.NET.Devices.Wooting.Keyboard
#endregion #endregion
} }
}

View File

@ -3,8 +3,8 @@ using RGB.NET.Devices.Wooting.Enum;
using RGB.NET.Devices.Wooting.Generic; using RGB.NET.Devices.Wooting.Generic;
using RGB.NET.Devices.Wooting.Native; using RGB.NET.Devices.Wooting.Native;
namespace RGB.NET.Devices.Wooting.Keyboard namespace RGB.NET.Devices.Wooting.Keyboard;
{
/// <summary> /// <summary>
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.Wooting.Keyboard.WootingKeyboardRGBDevice" />. /// Represents a generic information for a <see cref="T:RGB.NET.Devices.Wooting.Keyboard.WootingKeyboardRGBDevice" />.
/// </summary> /// </summary>
@ -37,4 +37,3 @@ namespace RGB.NET.Devices.Wooting.Keyboard
#endregion #endregion
} }
}

View File

@ -4,8 +4,8 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using RGB.NET.Devices.Wooting.Enum; using RGB.NET.Devices.Wooting.Enum;
namespace RGB.NET.Devices.Wooting.Native namespace RGB.NET.Devices.Wooting.Native;
{
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
internal struct _WootingDeviceInfo internal struct _WootingDeviceInfo
{ {
@ -25,4 +25,3 @@ namespace RGB.NET.Devices.Wooting.Native
internal WootingLayoutType LayoutType { get; private set; } internal WootingLayoutType LayoutType { get; private set; }
} }
}