mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
24 lines
658 B
C#
24 lines
658 B
C#
using CUE.NET.Devices.Generic;
|
|
using CUE.NET.Native;
|
|
|
|
namespace CUE.NET.Devices.Headset
|
|
{
|
|
/// <summary>
|
|
/// Represents specific information for a CUE headset.
|
|
/// </summary>
|
|
public class CorsairHeadsetDeviceInfo : GenericDeviceInfo
|
|
{
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Internal constructor of managed <see cref="CorsairHeadsetDeviceInfo" />.
|
|
/// </summary>
|
|
/// <param name="nativeInfo">The native <see cref="_CorsairDeviceInfo" />-struct</param>
|
|
internal CorsairHeadsetDeviceInfo(_CorsairDeviceInfo nativeInfo)
|
|
: base(nativeInfo)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|