net.mostlyoriginal.api.operation.temporal.DelayOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of contrib-plugin-operations Show documentation
Show all versions of contrib-plugin-operations Show documentation
Scheduled operations on entities and components.
package net.mostlyoriginal.api.operation.temporal;
import com.artemis.Entity;
import net.mostlyoriginal.api.component.Schedule;
import net.mostlyoriginal.api.operation.common.TemporalOperation;
/**
* Delay.
*
* @author Daan van Yperen
* @see Schedule
*/
public class DelayOperation extends TemporalOperation {
public DelayOperation() {}
@Override
public void act(float percentage, Entity e) {
// do nothing.
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy