Back to project page donatello-y-raphael.
The source code is released under:
MIT License
If you think the Android project donatello-y-raphael 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.example.ATracePath; import android.widget.Button; //from w ww .j a v a2s .com import java.util.List; import java.util.List; /** * Created by solberg on 21/09/14. */ public class Global { public List<Pack> mPacks; public boolean vibrate; public boolean levelFinished; public int packID; public int challengeID; public int puzzleID; public Button nextLevelBtn; private static Global mInstance = new Global(); public static Global getInstance() { return mInstance; } private Global() {} }