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 lib.cards.models; /*from w ww. j a v a2 s .co m*/ @SuppressWarnings("serial") public class SubStackMovedEventObject extends GameEventObject { SubStackMovedEventObject(Game game, SubStack source, CardStack target) { super(game); this.source = source; this.target = target; } private SubStack source; private CardStack target; public SubStack getSource() { return source; } public CardStack getTarget() { return target; } }