예제 #1
0
 ////////////////////////////////////////////////////////////
 /// <summary>
 /// Construct the joystick move arguments from a joystick move event
 /// </summary>
 /// <param name="e">Joystick move event</param>
 ////////////////////////////////////////////////////////////
 public JoystickMoveEventArgs(JoystickMoveEvent e)
 {
     JoystickId = e.JoystickId;
     Axis       = e.Axis;
     Position   = e.Position;
 }
예제 #2
0
 public static void InvokeJoystickMove(bool move)
 {
     JoystickMoveEvent.Invoke(move);
 }