All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xpenatan.gdx.backends.teavm.dom.WindowWrapper Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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