SFML.Window.JoystickMoveEventArgs.JoystickMoveEventArgs C# (CSharp) Method

JoystickMoveEventArgs() public method

Construct the joystick move arguments from a joystick move event
public JoystickMoveEventArgs ( JoystickMoveEvent e ) : System
e JoystickMoveEvent Joystick move event
return System
        public JoystickMoveEventArgs(JoystickMoveEvent e)
        {
            JoystickId = e.JoystickId;
            Axis = e.Axis;
            Position = e.Position;
        }