1
0
mirror of synced 2024-11-28 09:20:53 +01:00
OpenTaiko/FDK19/コード/02.入力/STInputEvent.cs
2021-09-21 00:16:38 +02:00

20 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace FDK
{
// 構造体
[StructLayout( LayoutKind.Sequential )]
public struct STInputEvent
{
public int nKey { get; set; }
public bool b押された { get; set; }
public bool b離された { get; set; }
public long nTimeStamp { get; set; }
public int nVelocity { get; set; }
}
}