![JAR search and dependency download from the Maven repository](/logo.png)
com.artemis.ComponentRemover 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;
abstract class ComponentRemover {
protected final ComponentPool pool;
final Bag components;
public ComponentRemover(Bag components, ComponentPool pool) {
this.components = components;
this.pool = pool;
}
abstract void mark(int entityId);
abstract boolean unmark(int entityId);
abstract void purge();
abstract boolean has(int entityId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy