blob: b3989de750a70441f735bedd9a43f4d4ba24765f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Runtime.InteropServices;
namespace Ryujinx.Horizon.Sdk.Settings.System
{
[StructLayout(LayoutKind.Sequential, Size = 0x20, Pack = 0x8)]
struct InitialLaunchSettings
{
public uint Flags;
public uint Reserved;
public ulong TimeStamp1;
public ulong TimeStamp2;
public ulong TimeStamp3;
}
}
|