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.online; //w w w . j a va 2s . c om import com.axnsan.airplanes.MatchHandler; import com.axnsan.airplanes.util.Point2D; public interface OnlineMatchHandler extends MatchHandler { void addPlayer(String username); void removePlayer(String username); void playerAttackedCell(String username, Point2D cell); void beginTurn(int turn); void addPlanes(String playerName, String planeLocations); int getGameID(); }