mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
16 lines
364 B
C#
16 lines
364 B
C#
using CUE.NET.Devices.Generic;
|
|
using CUE.NET.Native;
|
|
|
|
namespace CUE.NET.Devices.Headset
|
|
{
|
|
/// <summary>
|
|
/// Stub for planned headset-support.
|
|
/// </summary>
|
|
public class CorsairHeadsetDeviceInfo : GenericDeviceInfo
|
|
{
|
|
internal CorsairHeadsetDeviceInfo(_CorsairDeviceInfo nativeInfo)
|
|
: base(nativeInfo)
|
|
{ }
|
|
}
|
|
}
|