com.github.xpenatan.gdx.backends.teavm.TeaTool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backend-teavm Show documentation
Show all versions of backend-teavm Show documentation
Tool to generate libgdx to javascript using teaVM
package com.github.xpenatan.gdx.backends.teavm;
/**
* @author xpenatan
*/
public class TeaTool {
private static boolean isProd = true;
public static boolean isProdMode() {
return isProd;
}
public static void setIsProd(boolean flag) {
isProd = flag;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy