mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-09 07:52:33 -07:00
12 lines
271 B
C#
12 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;
|
|
}
|
|
}
|