com.artemis.SystemInvocationStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
package com.artemis;
import com.artemis.utils.Bag;
public abstract class SystemInvocationStrategy {
private World world;
protected final void setWorld(World world) {
this.world = world;
}
protected final void updateEntityStates() {
world.updateEntityStates();
}
protected abstract void process(Bag systems);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy