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

net.mostlyoriginal.api.operation.common.BasicOperation Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package net.mostlyoriginal.api.operation.common;

import com.artemis.Entity;

/**
 * @author Daan van Yperen
 */
public abstract class BasicOperation extends Operation {

	public abstract void process(Entity e);

	@Override
	public final boolean process(float delta, Entity e)
	{
		if ( !completed ) {
			process(e);
			completed = true;
		}
		return true;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy