mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
25 lines
987 B
C#
25 lines
987 B
C#
using RGB.NET.Core;
|
|
using RGB.NET.Devices.CorsairLegacy.Native;
|
|
|
|
namespace RGB.NET.Devices.CorsairLegacy;
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.CorsairLegacy.CorsairMousepadRGBDevice" />.
|
|
/// </summary>
|
|
public class CorsairMousepadRGBDeviceInfo : CorsairRGBDeviceInfo
|
|
{
|
|
#region Constructors
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Internal constructor of managed <see cref="T:RGB.NET.Devices.CorsairLegacy.CorsairMousepadRGBDeviceInfo" />.
|
|
/// </summary>
|
|
/// <param name="deviceIndex">The index if the <see cref="T:RGB.NET.Devices.CorsairLegacy.CorsairMousepadRGBDevice" />.</param>
|
|
/// <param name="nativeInfo">The native <see cref="T:RGB.NET.Devices.CorsairLegacy.Native._CorsairDeviceInfo" />-struct</param>
|
|
internal CorsairMousepadRGBDeviceInfo(int deviceIndex, _CorsairDeviceInfo nativeInfo)
|
|
: base(deviceIndex, RGBDeviceType.Mousepad, nativeInfo)
|
|
{ }
|
|
|
|
#endregion
|
|
} |