games.rednblack.editor.renderer.data.GraphNodeVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime-libgdx Show documentation
Show all versions of runtime-libgdx Show documentation
HyperLap2D libGDX runtime to render exported scenes
The newest version!
package games.rednblack.editor.renderer.data;
import java.util.HashMap;
public class GraphNodeVO {
public String id = "";
public String type = "";
public float x, y;
public HashMap data = new HashMap<>();
}