examples.fx.StretchTutorial 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.fx;
import br.com.etyllica.Etyllica;
import br.com.etyllica.commons.context.Application;
import examples.fx.application.StretchApplication;
public class StretchTutorial extends Etyllica {
private static final long serialVersionUID = 1L;
public StretchTutorial() {
super(800, 600);
}
public static void main(String[] args) {
StretchTutorial app = new StretchTutorial();
app.init();
}
@Override
public Application startApplication() {
//initialSetup("../../");
return new StretchApplication(w, h);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy