Back to project page AndroSol.
The source code is released under:
MIT License
If you think the Android project AndroSol 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.example.androsol; //ww w .jav a 2s . com import lib.cards.models.Card; import lib.cards.views.CardSprite; import android.graphics.Bitmap; public class CardSpriteImpl extends SpriteImpl implements CardSprite { CardSpriteImpl(Card card, Bitmap bitmap) { super(bitmap); this.card = card; } Card card; @Override public Card getCard() { return card; } }