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

games.rednblack.editor.renderer.components.ChainedEntitiesComponent Maven / Gradle / Ivy

The newest version!
package games.rednblack.editor.renderer.components;

import com.artemis.PooledComponent;
import com.badlogic.gdx.utils.IntArray;

public class ChainedEntitiesComponent extends PooledComponent {
    public IntArray chainedEntities = new IntArray();

    @Override
    protected void reset() {
        chainedEntities.clear();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy