WarpPI/teavm/src/main/java/it/cavallium/warppi/teavm/TeaVMBoot.java

12 lines
223 B
Java
Raw Normal View History

2018-09-04 12:12:41 +02:00
package it.cavallium.warppi.teavm;
import it.cavallium.warppi.boot.Boot;
public class TeaVMBoot {
2018-09-22 11:17:30 +02:00
public static void main(final String[] args) throws Exception {
2018-09-04 12:12:41 +02:00
Boot.boot(new TeaVMPlatform(), args);
}
}