Files
2026-02-21 16:45:37 +08:00

20 lines
538 B
C#

namespace Steamworks
{
public enum EControllerSource
{
k_EControllerSource_None = 0,
k_EControllerSource_LeftTrackpad = 1,
k_EControllerSource_RightTrackpad = 2,
k_EControllerSource_Joystick = 3,
k_EControllerSource_ABXY = 4,
k_EControllerSource_Switch = 5,
k_EControllerSource_LeftTrigger = 6,
k_EControllerSource_RightTrigger = 7,
k_EControllerSource_Gyro = 8,
k_EControllerSource_CenterTrackpad = 9,
k_EControllerSource_RightJoystick = 10,
k_EControllerSource_DPad = 11,
k_EControllerSource_Count = 12
}
}