TouchEntry.cs 234 B

1234567891011
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.Input
  3. {
  4. [StructLayout(LayoutKind.Sequential)]
  5. public unsafe struct TouchEntry
  6. {
  7. public long SamplesTimestamp;
  8. public long TouchCount;
  9. }
  10. }