Back to project page GhostStories.
The source code is released under:
GNU General Public License
If you think the Android project GhostStories 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 games.ghoststories.views.combat; // w w w . ja v a2 s .c o m import android.content.Context; import android.util.AttributeSet; import android.widget.TextView; /** * View that shows the instructions for the current combat phase. */ //TODO Maybe can get rid of this public class CombatInstructionsView extends TextView { /** * Constructor * @param pContext */ public CombatInstructionsView(Context pContext) { super(pContext); } /** * Constructor * @param pContext * @param pAttrs */ public CombatInstructionsView(Context pContext, AttributeSet pAttrs) { super(pContext, pAttrs); } /** * Constructor * @param pContext * @param pAttrs * @param pDefStyle */ public CombatInstructionsView(Context pContext, AttributeSet pAttrs, int pDefStyle) { super(pContext, pAttrs, pDefStyle); } }