Ejemplo n.º 1
0
 public static GamePadState GetState(PlayerIndex playerIndex, GamePadDeadZone deadZoneMode)
 {
     return(FNAPlatform.GetGamePadState(
                (int)playerIndex,
                deadZoneMode
                ));
 }
Ejemplo n.º 2
0
 public static GamePadState GetState(PlayerIndex playerIndex)
 {
     return(FNAPlatform.GetGamePadState(
                (int)playerIndex,
                GamePadDeadZone.IndependentAxes
                ));
 }