blob: b2f8fd832eb1f691a64293f64bec694cc843e4b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct InputDigitalActionData_t
{
public byte bState;
public byte bActive;
}
|