com.github.xpenatan.gdx.backends.teavm.config.plugins.TeaPlugin 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.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