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

com.github.xpenatan.gdx.backends.teavm.dom.EventWrapper 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 EventWrapper {

    String getType();

    EventTargetWrapper getTarget();

    public void preventDefault();

    public void stopPropagation();

    public float getDetail();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy