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

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

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

import com.artemis.PooledComponent;
import com.artemis.annotations.EntityId;

public class ParentNodeComponent extends PooledComponent {
    @EntityId public int parentEntity = -1;

    @Override
    public void reset() {
        parentEntity = -1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy