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 . ja v a2s. com*/ import java.util.EventObject; @SuppressWarnings("serial") public class CardsMovedEventObject extends EventObject { public CardsMovedEventObject(Game game, GameState oldState, GameState newState) { super(game); this.oldState = oldState; this.newState = newState; } public GameState getOldState() { return oldState; } public GameState getNewState() { return newState; } GameState oldState; GameState newState; }