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

com.uwsoft.editor.renderer.components.MainItemComponent Maven / Gradle / Ivy

Go to download

overlap2d-runtime-libgdx provides functionality to load, manipulate and render scenes generated by Overlap2D.

The newest version!
package com.uwsoft.editor.renderer.components;

import com.badlogic.ashley.core.Component;
import com.badlogic.gdx.utils.Array;

import java.util.HashSet;
import java.util.Set;

public class MainItemComponent implements Component {
    public int uniqueId = 0;
	public String itemIdentifier = "";
	public String libraryLink = "";
    public Set tags = new HashSet();
    public String customVars = "";
	public int entityType;
	public boolean visible = true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy