Back to project page iSlide.
The source code is released under:
MIT License
If you think the Android project iSlide 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 edu.csun.group2.islide.global; // www. j ava 2 s. c o m import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.math.Rectangle; public class GameInfo { public static final String HIGH_SCORE_PATH = "iSlide/h_scores.txt"; public boolean touching; public boolean justTouched; public Rectangle touchRectangle; public OrthographicCamera gameCamera; public boolean showNumbers = true; private static GameInfo INSTANCE = new GameInfo(); public static GameInfo getInstance() { return INSTANCE; } }