Android Open Source - RPG-Kit-Android O C Game Entry






From Project

Back to project page RPG-Kit-Android.

License

The source code is released under:

Apache License

If you think the Android project RPG-Kit-Android 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 net.cs76.projects.student;
/**//www  . j av a2s.c o m
 * Philip Regan
 * http://www.oatmealandcoffee.com
 * 
 * 
 * OCGameEntry
 * 
 * Payload object for user games to aid in display in various views
 */

/**
 * @author philipr
 *
 */
public class OCGameEntry {

  public String title;
  public String intro;
  public int id;
  
  public OCGameEntry (String newTitle, String newIntro, int newId) {
    title = newTitle;
    intro = newIntro;
    id = newId;
  }
  
}




Java Source Code List

net.cs76.projects.student.OCCoreActivity.java
net.cs76.projects.student.OCDbController.java
net.cs76.projects.student.OCEquipmentSelectionActivity.java
net.cs76.projects.student.OCGameComponentsEditActivity.java
net.cs76.projects.student.OCGameEngine.java
net.cs76.projects.student.OCGameEntryDbController.java
net.cs76.projects.student.OCGameEntry.java
net.cs76.projects.student.OCGameInformationEditActivity.java
net.cs76.projects.student.OCGameObjectSelectionActivity.java
net.cs76.projects.student.OCGamePlayLocationActivity.java
net.cs76.projects.student.OCGameSelectionActivity.java
net.cs76.projects.student.OCPlayerInformationEditActivity.java
net.cs76.projects.student.OCTaskSelectionActivity.java
net.cs76.projects.student.RPGKitActivity.java