Back to project page Stickman.
The source code is released under:
Apache License
If you think the Android project Stickman 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.wireframe.stickman; /*from ww w . ja v a 2 s . c o m*/ import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.scenes.scene2d.Stage; public class GUI { @SuppressWarnings("unused") private static Stage stage; private static BitmapFont font; public static void initialize(){ font.setScale(3f); stage = new Stage(); font = new BitmapFont(false); } }