use super::VmfFile;
impl VmfFile {
pub fn merge(&mut self, other: VmfFile) {
self.visgroups.groups.extend(other.visgroups.groups);
self.world.solids.extend(other.world.solids);
self.world.hidden.extend(other.world.hidden);
self.entities.extend(other.entities);
self.hiddens.extend(other.hiddens);
self.cordons.extend(other.cordons.cordons);
}
}