Back to project page Airplanes.
The source code is released under:
GNU General Public License
If you think the Android project Airplanes 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.axnsan.airplanes; //from w w w . j a v a 2 s .co m import com.axnsan.airplanes.util.Point2D; public interface MatchHandler { public void playerWasAttacked(int playerID, Point2D cell); public void playerWasAttacked(int playerID, int gridX, int gridY); public void cellSelected(Point2D cell); public void cellSelected(int gridX, int gridY); public void playerDied(int playerID); }