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/_MouseCustomEffect.cs
2021-06-01 23:53:56 +02:00

15 lines
382 B
C#

#pragma warning disable IDE1006 // Naming Styles
// ReSharper disable InconsistentNaming
using System.Runtime.InteropServices;
namespace RGB.NET.Devices.Razer.Native
{
[StructLayout(LayoutKind.Sequential)]
internal struct _MouseCustomEffect
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = _Defines.MOUSE_MAX_LEDS)]
public _Color[] Color;
}
}