Android Open Source - NGAWWH Quest






From Project

Back to project page NGAWWH.

License

The source code is released under:

GNU General Public License

If you think the Android project NGAWWH listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.me.ngawwh;
/*  w w  w. j  av a 2  s .com*/
public class Quest {
  private String Nombre;
  private String Contenido;
  
  public Quest(){}
  
  public void set_Nombre(String n){
    Nombre = n;
  }
  
  public void set_Contenido(String c){
    Contenido = c;
  }
  
  public String get_Nombre(){
    return Nombre;
  }
  
  public String get_Contenido(){
    return Contenido;
  }

}




Java Source Code List

com.me.ngawwh.CharGamePage.java
com.me.ngawwh.ConfGamePage.java
com.me.ngawwh.InvGamePage.java
com.me.ngawwh.Loader.java
com.me.ngawwh.MainActivity.java
com.me.ngawwh.MainGamePage.java
com.me.ngawwh.MainGame.java
com.me.ngawwh.Main.java
com.me.ngawwh.MapGamePage.java
com.me.ngawwh.MiniGamePage.java
com.me.ngawwh.QuestGamePage.java
com.me.ngawwh.QuestSelGamePage.java
com.me.ngawwh.Quest.java
com.me.ngawwh.StartGamePage.java
com.me.ngawwh.StylistGamePage.java