Back to project page rpg-droid.
The source code is released under:
Apache License
If you think the Android project rpg-droid 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.thing.rpg_droid.pathfinder; /* ww w . j av a 2 s.c o m*/ /** * Created by jon on 14/06/14. */ public class Status { private int mCurrentDamage = 0; private int mCurrentNonLethalDamage = 0; public int getCurrentDamage() { return mCurrentDamage; } public void setCurrentDamage(int pValue) { mCurrentDamage = pValue; } public int getCurrentNonLethalDamage() { return mCurrentNonLethalDamage; } public void setCurrentNonLethalDamage(int pValue) { mCurrentNonLethalDamage = pValue; } //TODO other types of conditions. }