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

com.artemis.system.ProfiledSystem 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.annotations.Profile;
import com.artemis.systems.EntityProcessingSystem;
import com.artemis.util.SimpleProfiler;

@Profile(enabled=true, using=SimpleProfiler.class)
public class ProfiledSystem extends EntityProcessingSystem {
	public ProfiledSystem() {
		super(Aspect.all());
	}

	@Override
	protected void process(Entity e) {

	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy