Header.cs 365 B

123456789101112131415
  1. using Ryujinx.Common.Memory;
  2. using System.Runtime.InteropServices;
  3. namespace Ryujinx.Input.Motion.CemuHook.Protocol
  4. {
  5. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  6. public struct Header
  7. {
  8. public uint MagicString;
  9. public ushort Version;
  10. public ushort Length;
  11. public Array4<byte> Crc32;
  12. public uint Id;
  13. }
  14. }