Back to project page SpareDeck.
The source code is released under:
MIT License
If you think the Android project SpareDeck 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.hacsoft.sparedeck.decks; //from w ww.ja v a 2 s.co m import com.hacsoft.sparedeck.R; /** * Spare Deck - com.hacsoft.sparedeck.decks * Created by Fortyseven on 4/6/2014. */ public class IcarusDeck extends Deck { public IcarusDeck() { init( "Kid Icarus: Uprising", R.drawable.deckicarus ); addCard( "Pit", R.drawable.icaruspit ); addCard( "Palutena", R.drawable.icaruspet ); addCard( "Medusa", R.drawable.icarusmed ); } }