Back to project page AndroidShooter.
The source code is released under:
GNU General Public License
If you think the Android project AndroidShooter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package jonathan.geoffroy.shooter; /*from w w w . j a v a2 s .c o m*/ import jonathan.geoffroy.shooter.view.screens.LevelScreen; import jonathan.geoffroy.shooter.view.screens.MainMenuScreen; import jonathan.geoffroy.shooter.view.utils.App; public class Shooter extends App { public final static String IMAGES = "data/img/"; public static final String MAPS = "data/maps/"; public static final String SOUNDS = "data/sounds/"; public static String FONTS = "data/fonts/"; public static int MAINMENU = 0, LEVEL = 1; @Override public void create() { super.create(); screens.add(new MainMenuScreen()); screens.add(new LevelScreen()); setScreen(MAINMENU); } }