1
0
mirror of synced 2024-12-01 10:37:22 +01:00
OpenTaiko/FDK19/コード/02.入力/STInputEvent.cs

20 lines
409 B
C#
Raw Normal View History

2021-09-21 00:16:38 +02:00
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; }
}
}