mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
15 lines
330 B
C#
15 lines
330 B
C#
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;
|
|
}
|
|
}
|