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; //ww w .j ava 2 s . com import com.badlogic.gdx.Game; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.math.Vector2; import com.martinb.googol.Screens.MenuScreen; public class Googol extends Game { Vector2 screenSize; @Override public void create() { screenSize = new Vector2(Gdx.graphics.getWidth(), Gdx.graphics.getHeight()); setScreen(new MenuScreen(this)); } @Override public void dispose() { super.dispose(); } @Override public void render() { super.render(); } @Override public void resize(int width, int height) { screenSize = new Vector2(width, height); super.resize(width, height); } @Override public void pause() { super.pause(); } @Override public void resume() { super.resume(); } public Vector2 getScreenSize() { return screenSize; } }