24 lines
788 B
C#
24 lines
788 B
C#
namespace Steamworks
|
|
{
|
|
public enum EControllerSourceMode
|
|
{
|
|
k_EControllerSourceMode_None = 0,
|
|
k_EControllerSourceMode_Dpad = 1,
|
|
k_EControllerSourceMode_Buttons = 2,
|
|
k_EControllerSourceMode_FourButtons = 3,
|
|
k_EControllerSourceMode_AbsoluteMouse = 4,
|
|
k_EControllerSourceMode_RelativeMouse = 5,
|
|
k_EControllerSourceMode_JoystickMove = 6,
|
|
k_EControllerSourceMode_JoystickMouse = 7,
|
|
k_EControllerSourceMode_JoystickCamera = 8,
|
|
k_EControllerSourceMode_ScrollWheel = 9,
|
|
k_EControllerSourceMode_Trigger = 10,
|
|
k_EControllerSourceMode_TouchMenu = 11,
|
|
k_EControllerSourceMode_MouseJoystick = 12,
|
|
k_EControllerSourceMode_MouseRegion = 13,
|
|
k_EControllerSourceMode_RadialMenu = 14,
|
|
k_EControllerSourceMode_SingleButton = 15,
|
|
k_EControllerSourceMode_Switches = 16
|
|
}
|
|
}
|