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

com.artemis.model.ComponentReference Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
package com.artemis.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 - 2025 Weber Informatics LLC | Privacy Policy