com.oculusvr.capi.HSWDisplayState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jovr Show documentation
Show all versions of jovr Show documentation
JNA bindings for the Oculus SDK C API
package com.oculusvr.capi;
import java.util.Arrays;
import java.util.List;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
/**
* 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 HSWDisplayState extends Structure {
public byte Displayed;
/** Absolute time when the warning was first displayed. See ovr_GetTimeInSeconds(). */
public double StartTime;
/** Earliest absolute time when the warning can be dismissed. May be a time in the past. */
public double DismissibleTime;
public HSWDisplayState() {
super();
}
@Override
protected List > getFieldOrder() {
return Arrays.asList("Displayed", "StartTime", "DismissibleTime");
}
public HSWDisplayState(byte Displayed, double StartTime, double DismissibleTime) {
super();
this.Displayed = Displayed;
this.StartTime = StartTime;
this.DismissibleTime = DismissibleTime;
}
public HSWDisplayState(Pointer peer) {
super(peer);
}
public static class ByReference extends HSWDisplayState implements Structure.ByReference {
};
public static class ByValue extends HSWDisplayState implements Structure.ByValue {
};
}