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.data; /*from w w w . j a v a2 s . c o m*/ public class StroyTipData { // ??????? private String HeadUrl; // ???????? private String StroyName; // ??????? private String StroyInfo; // ???? private String TodoInfo; // ??? private int chapter; // ????? private int progress; public int getChapter() { return chapter; } public void setChapter(int chapter) { this.chapter = chapter; } public int getProgress() { return progress; } public void setProgress(int progress) { this.progress = progress; } public String getTodoInfo() { return TodoInfo; } public void setTodoInfo(String todoInfo) { TodoInfo = todoInfo; } public String getHeadUrl() { return HeadUrl; } public void setHeadUrl(String headUrl) { HeadUrl = headUrl; } public String getStroyName() { return StroyName; } public void setStroyName(String stroyName) { StroyName = stroyName; } public String getStroyInfo() { return StroyInfo; } public void setStroyInfo(String stroyInfo) { StroyInfo = stroyInfo; } }