blob: 00e2ad36835d8bedbc7631afd39197367885446c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.Runtime.InteropServices;
namespace Ryujinx.Horizon.Sdk.Applet
{
[StructLayout(LayoutKind.Sequential, Size = 0x8, Pack = 0x8)]
readonly struct AppletResourceUserId
{
public readonly ulong Id;
public AppletResourceUserId(ulong id)
{
Id = id;
}
}
}
|