mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 09:06:40 +00:00
15 lines
305 B
C#
15 lines
305 B
C#
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace Ryujinx.Motion
|
|||
|
{
|
|||
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|||
|
public struct Header
|
|||
|
{
|
|||
|
public uint MagicString;
|
|||
|
public ushort Version;
|
|||
|
public ushort Length;
|
|||
|
public uint Crc32;
|
|||
|
public uint ID;
|
|||
|
}
|
|||
|
}
|