com.github.xpenatan.gdx.backends.teavm.utils.TeaNativeHelper 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.utils;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSObject;
public class TeaNativeHelper {
@JSBody(params = {"o1", "o2"}, script = "return o1 === o2;")
public static native boolean compareObject(JSObject o1, JSObject o2);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy