mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-21 10:11:13 +02:00
12 lines
234 B
C#
12 lines
234 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public unsafe struct TouchEntry
|
|
{
|
|
public long SamplesTimestamp;
|
|
public long TouchCount;
|
|
}
|
|
}
|