Back to project page SeniorDesign.
The source code is released under:
GNU General Public License
If you think the Android project SeniorDesign 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 fakesetgame.seniordesign.model; //from www. j av a2 s . c o m import java.util.EventObject; /** * An event fired when a game is over. */ public class GameOverEvent extends EventObject { public GameOverEvent(Object source){ super(source); } }