Files
2026-03-04 10:03:45 +08:00

13 lines
205 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct InputDigitalActionData_t
{
public byte bState;
public byte bActive;
}
}