Back to project page Android_Pong.
The source code is released under:
MIT License
If you think the Android project Android_Pong 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.pong.android; //w w w. j ava2 s . com /* * Designed to be implemented so that classes from the modell * can notify the implementing Activity that some specific * event that need to be handled has occurred. */ public interface IFGameEvents { void playerWin(); void playerLose(int number); }