Back to project page RPG-Kit-Android.
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.
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; } }