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.physics; /*from w w w.j a v a2 s .co m*/ import java.util.List; import android.content.res.Resources; import com.midtownmadness.bubblecombat.game.LevelObject; public abstract class LevelBuilder { public abstract LevelObject build(List<Integer> players, PhysicsService physicsService, Resources resources); }