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