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; //w ww.jav a2 s . com import java.util.HashMap; public class PlayerNamesMessage { public HashMap<Short, String> players; public PlayerNamesMessage() { players = new HashMap<Short, String>(); } }