Header.cs 305 B

1234567891011121314
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.Motion
  3. {
  4. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  5. public struct Header
  6. {
  7. public uint MagicString;
  8. public ushort Version;
  9. public ushort Length;
  10. public uint Crc32;
  11. public uint ID;
  12. }
  13. }