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; // w w w .j a v a2s .com import com.midtownmadness.bubblecombat.multiplay.MultiplayerGame; public class MockMultiplayerGame extends MultiplayerGame{ private String name; public MockMultiplayerGame(String name){ super(null); //shte se naqdem na hoi malko nie this.name = name; } @Override public String getName() { return name; } }