1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00
RGB.NET/RGB.NET.Devices.Razer/Native/_HeadsetCustomEffect.cs

12 lines
296 B
C#

using System.Runtime.InteropServices;
namespace RGB.NET.Devices.Razer.Native
{
[StructLayout(LayoutKind.Sequential)]
internal struct _HeadsetCustomEffect
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = _Defines.HEADSET_MAX_LEDS)]
public _Color[] Color;
}
}