/**
* Universe serialization helper
*/
public Universe readUniverse(ObjectInputStream in) throws IOException {
FileSerializer fs = new FileSerializer();
File res;
try {
res = fs.read(in, CurrentPathProvider.currentPathProvider
.getCurrentPath());
} catch (ClassNotFoundException e) {
throw new IOException(e.getMessage());
}
Universe u = getUniverse(res);