package com.jme3.system.jopenvr; import com.sun.jna.Pointer; import com.sun.jna.Union; /** * <i>native declaration : headers\openvr_capi.h:1290</i><br> * 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 VROverlayIntersectionMaskPrimitive_Data_t extends Union { /** C type : IntersectionMaskRectangle_t */ public IntersectionMaskRectangle_t m_Rectangle; /** C type : IntersectionMaskCircle_t */ public IntersectionMaskCircle_t m_Circle; public VROverlayIntersectionMaskPrimitive_Data_t() { super(); } /** @param m_Rectangle C type : IntersectionMaskRectangle_t */ public VROverlayIntersectionMaskPrimitive_Data_t(IntersectionMaskRectangle_t m_Rectangle) { super(); this.m_Rectangle = m_Rectangle; setType(IntersectionMaskRectangle_t.class); } /** @param m_Circle C type : IntersectionMaskCircle_t */ public VROverlayIntersectionMaskPrimitive_Data_t(IntersectionMaskCircle_t m_Circle) { super(); this.m_Circle = m_Circle; setType(IntersectionMaskCircle_t.class); } public VROverlayIntersectionMaskPrimitive_Data_t(Pointer peer) { super(peer); } public static class ByReference extends VROverlayIntersectionMaskPrimitive_Data_t implements com.sun.jna.Structure.ByReference { }; public static class ByValue extends VROverlayIntersectionMaskPrimitive_Data_t implements com.sun.jna.Structure.ByValue { }; }