mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
using CUE.NET.Devices.Generic;
|
|
using CUE.NET.Devices.Mouse.Enums;
|
|
using CUE.NET.Native;
|
|
|
|
namespace CUE.NET.Devices.Mouse
|
|
{
|
|
/// <summary>
|
|
/// Stub for planned headset-support.
|
|
/// </summary>
|
|
public class CorsairMouseDeviceInfo : GenericDeviceInfo
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <summary>
|
|
/// Physical layout of the mouse.
|
|
/// </summary>
|
|
public CorsairPhysicalMouseLayout PhysicalLayout { get; private set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Internal constructor of managed CorsairDeviceInfo.
|
|
/// </summary>
|
|
/// <param name="nativeInfo">The native CorsairDeviceInfo-struct</param>
|
|
internal CorsairMouseDeviceInfo(_CorsairDeviceInfo nativeInfo)
|
|
: base(nativeInfo)
|
|
{
|
|
this.PhysicalLayout = (CorsairPhysicalMouseLayout)nativeInfo.physicalLayout;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|