com.github.xpenatan.gdx.backends.teavm.dom.URLWrapper 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.dom;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSObject;
public abstract class URLWrapper implements JSObject {
@JSBody(params = { "object" }, script = "return URL.createObjectURL(object);")
public static native String createObjectURL(JSObject object);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy