com.github.xpenatan.gdx.backends.teavm.agent.TeaAgentInfo 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.agent;
import org.teavm.jso.JSObject;
import org.teavm.jso.JSProperty;
/**
* @author xpenatan
*/
public interface TeaAgentInfo extends JSObject {
@JSProperty
boolean isFirefox();
@JSProperty
boolean isChrome();
@JSProperty
boolean isSafari();
@JSProperty
boolean isOpera();
@JSProperty
boolean isIE();
@JSProperty
boolean isMacOS();
@JSProperty
boolean isLinux();
@JSProperty
boolean isWindows();
@JSProperty
String getUserAgent();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy