@pejman Missing? Which class? Which branch?
Use ViGEm to create XBox 360 controller in C#
namespace Nefarius.ViGEm.Client.Targets.Xbox360
{
[Flags]
public enum Xbox360Buttons : ushort
{
Up = 1,
Down = 2,
Left = 4,
Right = 8,
Start = 16,
Back = 32,
LeftThumb = 64,
RightThumb = 128,
LeftShoulder = 256,
RightShoulder = 512,
Guide = 1024,
A = 4096,
B = 8192,
X = 16384,
Y = 32768
}
}
i'm talking about the buttons when you hard press the joy sticks or 'up/right', 'up/left', and the rest of it.