Back to project page killingspree.
The source code is released under:
MIT License
If you think the Android project killingspree 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.sillygames.killingSpree.networking.messages; //ww w . ja v a2s.c om import com.sillygames.killingSpree.pool.Poolable; public class EntityState implements Poolable{ public short id; public byte type; public float x, y; public float angle; public short extra; public float vX, vY; @Override public void reset() { id = 0; type = 0; x = 0; y = 0; angle = 0; extra = 0; vX = 0; vY = 0; } }