Back to project page RUflow.
The source code is released under:
GNU General Public License
If you think the Android project RUflow 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 is.ru.app; /*from w w w . j av a 2 s .co m*/ import java.util.ArrayList; import java.util.List; /** * Created by rur on 15.9.2014. */ public class Global { public List<Pack> mPacks; public String packSelect; public List<Coordinate> flowCoord; public int mSize; public ArrayList<Puzzle> puzzlePack; public int selectedPuzzle; public FlowDbAdapter fa; /// private static Global mInstance = new Global(); public static Global getInstance() { return mInstance; } private Global() {} }