mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
Merge 2
This commit is contained in:
parent
f69560224d
commit
71981a5cf3
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@ -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 }
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user