mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-21 07:50:17 +00:00
11 lines
253 B
C#
11 lines
253 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Irsensor
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Size = 0x4)]
|
|
public struct PackedMcuVersion
|
|
{
|
|
public short MajorVersion;
|
|
public short MinorVersion;
|
|
}
|
|
}
|