examples.linear.arrow.ArrowExample 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.arrow;
import br.com.etyllica.Etyllica;
import br.com.etyllica.commons.context.Application;
import examples.linear.arrow.application.ArrowApplication;
public class ArrowExample extends Etyllica {
private static final long serialVersionUID = 1L;
public ArrowExample() {
super(640, 480);
}
public static void main(String[] args){
ArrowExample example = new ArrowExample();
example.init();
}
@Override
public Application startApplication() {
return new ArrowApplication(w,h);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy