package jopenvr; import com.sun.jna.Pointer; import com.sun.jna.Structure; import java.util.Arrays; import java.util.List; /** * This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA. */ public class VRControllerAxis_t extends Structure { public float x; public float y; public VRControllerAxis_t() { super(); } protected List getFieldOrder() { return Arrays.asList("x", "y"); } public VRControllerAxis_t(float x, float y) { super(); this.x = x; this.y = y; } public VRControllerAxis_t(Pointer peer) { super(peer); } public static class ByReference extends VRControllerAxis_t implements Structure.ByReference { }; public static class ByValue extends VRControllerAxis_t implements Structure.ByValue { }; }