3D spaceshooter with online scoreboard, online demos, ship building. Now entirely defunct, but might be resurrected
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
sector/src/net/sector/network/responses/ObjUserList.java

27 lines
452 B

package net.sector.network.responses;
import java.util.ArrayList;
/**
* List of users in global leaderboard system
*
* @author Ondřej Hruška (MightyPork)
*/
public class ObjUserList extends ArrayList<ObjUserInfo> {
@Override
public String toString() {
String s = "";
s += "\n# USER LIST BEGIN #\n";
for (ObjUserInfo u : this) {
s += "\n";
s += u.toString();
s += "\n";
}
s += "\n# USER LIST END #\n";
return s;
}
}