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 www . j ava 2 s . c o m*/ /** * Spare Deck - com.hacsoft.sparedeck.decks * Created by Fortyseven on 4/6/2014. */ public class Card { public String name; public int image_resource; public Card( String card_name, int image_res ) { name = card_name; image_resource = image_res; } }