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

games.rednblack.editor.renderer.components.shape.CircleShapeComponent Maven / Gradle / Ivy

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

import com.artemis.PooledComponent;

public class CircleShapeComponent extends PooledComponent {
    public float radius = 1;

    @Override
    protected void reset() {
        radius = 1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy