aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Input/Motion/CemuHook/Protocol/Header.cs
blob: 94cf4bb6787c06c350b6dba568344c546a1e1bca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Runtime.InteropServices;

namespace Ryujinx.Input.Motion.CemuHook.Protocol
{
    [StructLayout(LayoutKind.Sequential, Pack = 1)]
    public struct Header
    {
        public uint   MagicString;
        public ushort Version;
        public ushort Length;
        public uint   Crc32;
        public uint   Id;
    }
}