You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
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 <a href="http://jnaerator.googlecode.com/">JNAerator</a>,<br>
|
|
* a tool written by <a href="http://ochafik.com/">Olivier Chafik</a> that <a href="http://code.google.com/p/jnaerator/wiki/CreditsAndLicense">uses a few opensource projects.</a>.<br>
|
|
* For help, please visit <a href="http://nativelibs4java.googlecode.com/">NativeLibs4Java</a> , <a href="http://rococoa.dev.java.net/">Rococoa</a>, or <a href="http://jna.dev.java.net/">JNA</a>.
|
|
*/
|
|
public class HmdRect2_t extends Structure {
|
|
/** C type : HmdVector2_t */
|
|
public HmdVector2_t vTopLeft;
|
|
/** C type : HmdVector2_t */
|
|
public HmdVector2_t vBottomRight;
|
|
public HmdRect2_t() {
|
|
super();
|
|
}
|
|
protected List<String> getFieldOrder() {
|
|
return Arrays.asList("vTopLeft", "vBottomRight");
|
|
}
|
|
/**
|
|
* @param vTopLeft C type : HmdVector2_t<br>
|
|
* @param vBottomRight C type : HmdVector2_t
|
|
*/
|
|
public HmdRect2_t(HmdVector2_t vTopLeft, HmdVector2_t vBottomRight) {
|
|
super();
|
|
this.vTopLeft = vTopLeft;
|
|
this.vBottomRight = vBottomRight;
|
|
}
|
|
public HmdRect2_t(Pointer peer) {
|
|
super(peer);
|
|
}
|
|
public static class ByReference extends HmdRect2_t implements Structure.ByReference {
|
|
|
|
};
|
|
public static class ByValue extends HmdRect2_t implements Structure.ByValue {
|
|
|
|
};
|
|
}
|
|
|