Back to project page FloppyThreeD.
The source code is released under:
MIT License
If you think the Android project FloppyThreeD 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.jtechapps.FloppyThreeD; /*from w ww .j av a 2s . c o m*/ import com.badlogic.gdx.Game; import com.jtechapps.FloppyThreeD.Screens.MainMenuScreen; public class FloppyGame extends Game { Game g = this; private NativeInterface nface; public FloppyGame(NativeInterface nativeInterface){ nface = nativeInterface; } @Override public void create () { this.setScreen(new MainMenuScreen(g, nface)); } @Override public void dispose(){ nface.dispose(); super.dispose(); } }