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 ww w . ja v a 2s.c om*/ import com.midtownmadness.bubblecombat.game.GameObject; public class BodyUserData { public BodyUserData(GameObject gameObject) { this.gameObject = gameObject; } public GameObject gameObject; }