Back to project page Layrd.
The source code is released under:
MIT License
If you think the Android project Layrd 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.Voltronics.game; // w w w .j a va 2 s.co m import com.badlogic.gdx.Game; public class LayrdGame extends Game { LayrdGoogleGameInterface googleGameInterface; public LayrdGame(LayrdGoogleGameInterface googleInterface) { googleGameInterface = googleInterface; } @Override public void create() { System.out.println("Game Create"); //Assets.load(); loadAssets(); setScreen(new LayrdScreenMainMenu(this)); //setScreen(new LayrdScreenGame(this)); } private void loadAssets(){ // load the game graphics LayrdGraphics.loadTexture("player", "ship.png"); LayrdGraphics.loadTexture("items", "items.png"); // load the game audio } @Override public void dispose() { } }