examples.linear.polygonal.PolygonalExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etyllica Show documentation
Show all versions of etyllica Show documentation
A game engine made in pure java.
package examples.linear.polygonal;
import examples.linear.polygonal.application.PolygonalMultiArea;
import br.com.etyllica.Etyllica;
import br.com.etyllica.commons.context.Application;
public class PolygonalExample extends Etyllica {
private static final long serialVersionUID = 1L;
public PolygonalExample() {
super(640, 480);
}
public static void main(String[] args){
PolygonalExample example = new PolygonalExample();
example.init();
}
@Override
public Application startApplication() {
return new PolygonalMultiArea(w,h);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy