mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
25 lines
432 B
C#
25 lines
432 B
C#
using CUE.NET.Devices.Generic;
|
|
|
|
namespace CUE.NET.Devices.Headset
|
|
{
|
|
//TODO DarthAffe 18.09.2015: Implement
|
|
public class CorsairHeadset : AbstractCueDevice
|
|
{
|
|
#region Properties & Fields
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal CorsairHeadset(CorsairHeadsetDeviceInfo info)
|
|
: base(info)
|
|
{ }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
#endregion
|
|
}
|
|
}
|