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

games.rednblack.h2d.extension.tinyvg.TinyVGComponent Maven / Gradle / Ivy

The newest version!
package games.rednblack.h2d.extension.tinyvg;

import com.artemis.PooledComponent;
import dev.lyze.gdxtinyvg.TinyVG;

public class TinyVGComponent extends PooledComponent {
    public transient TinyVG tinyVG = null;

    public String imageName = "";

    @Override
    protected void reset() {
        tinyVG = null;
        imageName = "";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy