blob: dd93137c2b357c101cf90c1eacc0d4806d1c6818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.Input
{
[StructLayout(LayoutKind.Sequential)]
public struct TouchHeader
{
public long Timestamp;
public long EntryCount;
public long CurrentEntryIndex;
public long MaxEntries;
public long SamplesTimestamp;
}
}
|