io.vproxy.pni.exec.ast.BitFieldInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-exec Show documentation
Show all versions of pni-exec Show documentation
panama native interface pni-exec
The newest version!
package io.vproxy.pni.exec.ast;
public class BitFieldInfo {
public final String name;
public final int offset;
public final int bit;
public final boolean bool;
public BitFieldInfo(String name, int offset, int bit, boolean bool) {
this.name = name;
this.offset = offset;
this.bit = bit;
this.bool = bool;
}
}