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; // ww w . j a v a2 s . c om import com.views.ToggledImageView; import android.content.Context; import android.util.AttributeSet; /** * View for the ROLL button during the combat phase. */ //TODO Maybe can get rid of this public class CombatRollView extends ToggledImageView { /** * Constructor * @param pContext */ public CombatRollView(Context pContext) { super(pContext); } /** * Constructor * @param pContext * @param pAttrs */ public CombatRollView(Context pContext, AttributeSet pAttrs) { super(pContext, pAttrs); } public CombatRollView(Context pContext, AttributeSet pAttrs, int pDefStyle) { super(pContext, pAttrs, pDefStyle); } }