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.
/** * Created by jon on 8/06/14.// w w w . j av a 2 s . c o m */ package com.thing.rpg_droid.pathfinder; public class Spell { private String mName = ""; public Spell() { } public String getName() { return mName; } public void setName(String pValue) { mName = pValue; } }