Back to project page hackfmi-ragdoll-physics.
The source code is released under:
GNU General Public License
If you think the Android project hackfmi-ragdoll-physics 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.midtownmadness.bubblecombat.multiplay; /* ww w . jav a2 s . c o m*/ import java.util.Map; import android.bluetooth.BluetoothSocket; import android.os.Handler; public interface MultiplayStrategy { void handshakeAndLoad(); Handler getHandler(); void start(); void commenceGame(); void onPlayerConnected(final int playerId, final BluetoothSocket socket); void close(); public Map<Integer, BluetoothSocket> getConnectedPlayers(); void action(); void endGame(); void add(MultiplayEvent event); }