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

com.artemis.SystemInvocationStrategy Maven / Gradle / Ivy

package com.artemis;

import com.artemis.utils.Bag;

public abstract class SystemInvocationStrategy {

	protected World world;

	protected final void setWorld(World world) {
		this.world = world;
	}

	protected final void updateEntityStates() {
		world.updateEntityStates();
	}

	protected abstract void process(Bag systems);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy