mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
26 lines
765 B
C#
26 lines
765 B
C#
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
using CUE.NET.Devices.Generic;
|
|
using CUE.NET.Native;
|
|
|
|
namespace CUE.NET.Devices.Mousemat
|
|
{
|
|
/// <summary>
|
|
/// Represents specific information for a CUE Mousemat.
|
|
/// </summary>
|
|
public class CorsairMousematDeviceInfo : GenericDeviceInfo
|
|
{
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Internal constructor of managed <see cref="CorsairMousematDeviceInfo" />.
|
|
/// </summary>
|
|
/// <param name="nativeInfo">The native <see cref="_CorsairDeviceInfo" />-struct</param>
|
|
internal CorsairMousematDeviceInfo(_CorsairDeviceInfo nativeInfo)
|
|
: base(nativeInfo)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
} |