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