mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-15 00:30:17 +00:00
11 lines
271 B
C#
11 lines
271 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Irsensor
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Size = 0x8)]
|
|
struct PackedIrLedProcessorConfig
|
|
{
|
|
public PackedMcuVersion RequiredMcuVersion;
|
|
public byte LightTarget;
|
|
}
|
|
}
|