All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.onedaybeard.ecs.model.ComponentReference Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
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