1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48: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.Devices.Razer.Native;
namespace RGB.NET.Devices.Razer
{
namespace RGB.NET.Devices.Razer;
/// <summary>
/// Contains mappings for <see cref="LedId"/> to the matrix location.
/// </summary>
@ -497,4 +497,3 @@ namespace RGB.NET.Devices.Razer
/// </summary>
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.HID;
namespace RGB.NET.Devices.Razer
{
namespace RGB.NET.Devices.Razer;
/// <inheritdoc />
/// <summary>
/// Represents a device provider responsible for razer devices.
@ -302,4 +302,3 @@ namespace RGB.NET.Devices.Razer
#endregion
}
}

View File

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

View File

@ -3,8 +3,8 @@
#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>
/// Contains list of available physical layouts for Wooting keyboards.
/// </summary>
@ -16,4 +16,3 @@ namespace RGB.NET.Devices.Wooting.Enum
ANSI = 0,
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.Native;
namespace RGB.NET.Devices.Wooting.Generic
{
namespace RGB.NET.Devices.Wooting.Generic;
/// <inheritdoc />
/// <summary>
/// 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
}
}

View File

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

View File

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

View File

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

View File

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