mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 09:08:34 +00:00
27 lines
505 B
C#
27 lines
505 B
C#
namespace CUE.NET.Wrapper.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
|
|
}
|
|
}
|