games.rednblack.h2d.extension.tinyvg.TinyVGComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libgdx-tinyvg-extension Show documentation
Show all versions of libgdx-tinyvg-extension Show documentation
TinyVG extension for HyperLap2D libgdx runtime
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 = "";
}
}