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

com.github.xpenatan.gdx.backends.teavm.config.plugins.TeaPlugin Maven / Gradle / Ivy

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

import org.teavm.jso.impl.JSOPlugin;
import org.teavm.vm.spi.Before;
import org.teavm.vm.spi.TeaVMHost;
import org.teavm.vm.spi.TeaVMPlugin;

/**
 * @author xpenatan
 */
@Before(JSOPlugin.class)
public class TeaPlugin implements TeaVMPlugin {

    @Override
    public void install(TeaVMHost host) {
        host.add(new TeaClassTransformer());
        host.add(new JavaObjectExporterDependency());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy