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; /*w w w .j av a 2s. c o m*/ /* * Utility Class designed to communicate with the information within the LIBGDX game */ public class UtilityInfo { public int puzzleSize; public int score; public boolean sound; public String path; public boolean showNumbers; //Factory Style, takes existing data and creates and object for it public UtilityInfo(int puzzleSize, int score, boolean sound, String path, boolean showNumbers) { this.puzzleSize = puzzleSize; this.score = score; this.sound = sound; this.path = path; this.showNumbers = showNumbers; } }