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; // w w w. java2 s . com import lib.cards.models.CardStack; import lib.cards.views.StackSprite; import android.graphics.Bitmap; public class StackSpriteImpl extends SpriteImpl implements StackSprite { StackSpriteImpl(CardStack stack, Bitmap bitmap) { super(bitmap); this.stack = stack; } CardStack stack; @Override public CardStack getStack() { return stack; } }