1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-31 03:52:55 -06:00

14 lines
318 B
C#
Raw Normal View History

using System.Runtime.InteropServices;
namespace Ryujinx.Modules.Motion
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct Header
{
public uint MagicString;
public ushort Version;
public ushort Length;
public uint Crc32;
public uint Id;
}
}