Back to project page TheFirstMyth02.
The source code is released under:
MIT License
If you think the Android project TheFirstMyth02 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.game.stroy; //from ww w .ja v a2s. c o m import java.util.ArrayList; import java.util.List; import com.game.commen.GameXmlcommen; import com.game.data.StroyTipData; public class MainStroy { static List<StroyTipData> stdlist; int nowstory = -1; static GameXmlcommen gx = new GameXmlcommen(); public static List<StroyTipData> getmainstroy_chapter1() { stdlist = new ArrayList<StroyTipData>(); stdlist = gx.getRiversFromXml("stroyxml/maimstoy1.xml"); return stdlist; } }