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

com.artemis.system.OptimizedSystemAdditional Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package com.artemis.system;

import com.artemis.Aspect;
import com.artemis.Entity;
import com.artemis.systems.EntityProcessingSystem;

public class OptimizedSystemAdditional extends EntityProcessingSystem {

	public OptimizedSystemAdditional() {
		super(Aspect.all());

		setEnabled(true);
		begin();
	}

	@Override
	public void setEnabled(boolean enabled) {
		if (world != null)
			super.setEnabled(enabled);
	}

	@Override
	protected void begin() {
		super.begin();
	}

	@Override
	protected void process(Entity e) {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy