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/ObjLevelList.java

27 lines
441 B

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