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.commobjects; // w w w .ja va 2 s .c o m import java.io.Serializable; public class GoMessageObject implements Serializable { public final long timestamp; public GoMessageObject(long timestamp){ this.timestamp = timestamp; } }