mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
34 lines
685 B
C#
34 lines
685 B
C#
using CUE.NET.Devices.Generic;
|
|
|
|
namespace CUE.NET.Devices.Mouse
|
|
{
|
|
//TODO DarthAffe 20.09.2015: Find someone to test this
|
|
/// <summary>
|
|
/// Stub for planned headset-support.
|
|
/// </summary>
|
|
public class CorsairMouse : AbstractCueDevice
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public CorsairMouseDeviceInfo MouseDeviceInfo { get; }
|
|
|
|
protected override bool HasEffect => false;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal CorsairMouse(CorsairMouseDeviceInfo info)
|
|
: base(info)
|
|
{
|
|
this.MouseDeviceInfo = info;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|