Back to project page ZombieBird.
The source code is released under:
Apache License
If you think the Android project ZombieBird 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 com.kilobolt.ZombieBird; // w ww .j av a2s.c om import com.badlogic.gdx.Game; import com.kilobolt.ZBHelpers.AssetLoader; import com.kilobolt.Screens.GameScreen; public class ZBGame extends Game { @Override public void create() { System.out.println("ZBGame Created!"); AssetLoader.load(); setScreen(new GameScreen()); } @Override public void dispose() { super.dispose(); AssetLoader.dispose(); } }