}
public <T extends CellServerState> T getDefaultCellServerState(
Properties props) {
// Create a setup with some default values
ConeOfSilenceCellServerState cellServerState =
new ConeOfSilenceCellServerState();
cellServerState.setName("ConeOfSilence");
// Give the hint for the bounding volume for initial Cell placement
BoundingBox box = new BoundingBox(new Vector3f(), 2f, 0f, 2f);
BoundingVolumeHint hint = new BoundingVolumeHint(true, box);
cellServerState.setBoundingVolumeHint(hint);
return (T) cellServerState;
}