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; /*w ww . ja v a 2 s . co m*/ import java.io.Serializable; public class MultiplayEvent implements Serializable { /** * {@value} */ private static long serialVersionUID = 4852219829927505606L; public float x; public float y; public float health; public float dx; public float dy; public float vx; public float vy; public long timestamp; }