
net.namekdev.entity_tracker.model.AspectInfo Maven / Gradle / Ivy
The newest version!
package net.namekdev.entity_tracker.model;
import java.util.BitSet;
public class AspectInfo {
public BitSet allTypes;
public BitSet oneTypes;
public BitSet exclusionTypes;
public AspectInfo() {
}
public AspectInfo(BitSet allTypes, BitSet oneTypes, BitSet exclusionTypes) {
this.allTypes = allTypes;
this.oneTypes = oneTypes;
this.exclusionTypes = exclusionTypes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy