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 ww w . j a v a2s . c o m @SuppressWarnings("serial") public class ScoreChangedEventObject extends GameEventObject { public ScoreChangedEventObject(Game source, int oldScore, int newScore) { super(source); this.oldScore = oldScore; this.newScore = newScore; } public int getOldScore() { return oldScore; } public int getNewScore() { return newScore; } private final int oldScore; private final int newScore; }