games.rednblack.h2d.common.network.model.GithubReleaseData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-api Show documentation
Show all versions of common-api Show documentation
Common API to build HyperLap2D plugins
The newest version!
package games.rednblack.h2d.common.network.model;
import com.badlogic.gdx.utils.Array;
public class GithubReleaseData {
public String tag_name;
public String name;
public Array assets;
public static class GithubReleaseAssetData {
public String name;
public String browser_download_url;
}
}