blob: cc7b317be7b42015aa08e7f6193ac6bc40dc8885 (
plain)
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 = 0x14, Pack = 0x1)]
struct HomeMenuScheme
{
public uint Main;
public uint Back;
public uint Sub;
public uint Bezel;
public uint Extra;
}
}
|