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

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

There is a newer version: 1.0.4
Show newest version
package com.github.xpenatan.gdx.backends.teavm.dom;

import org.teavm.jso.JSObject;

/**
 * @author xpenatan
 */
public interface HTMLVideoElementWrapper extends JSObject {
    // HTMLVideoElement
    int getWidth();

    void setWidth(int width);

    int getHeight();

    void setHeight(int height);

    int getVideoWidth();

    int getVideoHeight();

    String getPoster();

    void setPoster(String poster);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy