com.github.xpenatan.gdx.backends.teavm.dom.WindowWrapper 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;
/**
* @author xpenatan
*/
public interface WindowWrapper {
public DocumentWrapper getDocument();
public void requestAnimationFrame(Runnable runnable);
public LocationWrapper getLocation();
public int getClientWidth();
public int getClientHeight();
public void addEventListener(String type, EventListenerWrapper listener);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy