net.onedaybeard.ecs.model.ComponentReference Maven / Gradle / Ivy
package net.onedaybeard.ecs.model;
public enum ComponentReference {
REQUIRED("R"), ANY("A"), OPTIONAL("O"), EXCLUDED("X"), NOT_REFERENCED("");
public final String symbol;
private ComponentReference(String symbol) {
this.symbol = symbol;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy