22 lines
342 B
C#
22 lines
342 B
C#
namespace Valve.VR
|
|
{
|
|
public struct VRControllerState_t
|
|
{
|
|
public uint unPacketNum;
|
|
|
|
public ulong ulButtonPressed;
|
|
|
|
public ulong ulButtonTouched;
|
|
|
|
public VRControllerAxis_t rAxis0;
|
|
|
|
public VRControllerAxis_t rAxis1;
|
|
|
|
public VRControllerAxis_t rAxis2;
|
|
|
|
public VRControllerAxis_t rAxis3;
|
|
|
|
public VRControllerAxis_t rAxis4;
|
|
}
|
|
}
|