mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
23 lines
371 B
C#
23 lines
371 B
C#
namespace CUE.NET.Wrapper
|
|
{
|
|
//TODO DarthAffe 18.09.2015: Implement
|
|
public class CueMouse : AbstractCueDevice
|
|
{
|
|
#region Properties & Fields
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public CueMouse(CorsairDeviceInfo info)
|
|
: base(info)
|
|
{ }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|