mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
29 lines
537 B
C#
29 lines
537 B
C#
using CUE.NET.Devices.Generic;
|
|
|
|
namespace CUE.NET.Devices.Mouse
|
|
{
|
|
//TODO DarthAffe 18.09.2015: Implement
|
|
public class CorsairMouse : AbstractCueDevice
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public CorsairMouseDeviceInfo MouseDeviceInfo { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal CorsairMouse(CorsairMouseDeviceInfo info)
|
|
: base(info)
|
|
{
|
|
this.MouseDeviceInfo = info;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|