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 .j a v a 2s.c o m import com.hacsoft.sparedeck.R; /** * Spare Deck - com.hacsoft.sparedeck.decks * Created by Fortyseven on 4/6/2014. */ public class VitaDeck extends Deck { public VitaDeck() { init( "PS Vita", R.drawable.deckvita ); addCard( "01", R.drawable.vita01 ); addCard( "02", R.drawable.vita02 ); addCard( "03", R.drawable.vita03 ); addCard( "04", R.drawable.vita04 ); addCard( "05", R.drawable.vita05 ); addCard( "06", R.drawable.vita06 ); } }