Back to project page ARGiE.
The source code is released under:
MIT License
If you think the Android project ARGiE 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 headrick.brandon.models; /*from w ww . java 2 s . c om*/ import java.util.LinkedList; /** * Provides the parent class for all game types that the user can use as templates to create games. * @author Brandon Headrick * */ public class BaseGame { private LinkedList<QuestNode> questNodes; }