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

main.io.github.seba244c.icespire.ecs.Component Maven / Gradle / Ivy

package io.github.seba244c.icespire.ecs;

/**
 * @author Sebsa
 * @since 1.0.1
 */
public abstract class Component {
	public Entity entity;
	
	public void update() {
		// all components needs to have this function
	}
	
	public void cleanup() {
		// all components needs to have this function
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy