Back to project page SOIAF_RPG.
The source code is released under:
GNU General Public License
If you think the Android project SOIAF_RPG 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 de.mroehrl.RPG; //from ww w. j av a 2 s . c o m public class RPGCharacter { private String name; private int copperPennies = 0; public RPGCharacter() { this("none"); } public RPGCharacter(String aName) { name = aName; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getCopperPennies() { return copperPennies; } public void setCopperPennies(int copperPennies) { this.copperPennies = copperPennies; } }