Back to project page googol.
The source code is released under:
MIT License
If you think the Android project googol 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.martinb.googol.Screens; /*ww w .j a v a2 s .com*/ import com.martinb.googol.Googol; import com.martinb.googol.Objects.World; public class MenuScreen extends Screen { public MenuScreen(Googol game) { super(game); world = new World(this); } public void render(float delta) { super.render(delta); } public void dispose() { super.dispose(); } }