remove old impl

This commit is contained in:
Max Bradbury 2021-05-17 20:51:39 +01:00
parent 5b2d2cc510
commit dbf728bb32
1 changed files with 0 additions and 20 deletions

View File

@ -44,26 +44,6 @@ struct IntermediateScene {
foreground: Vec<String>, foreground: Vec<String>,
} }
// impl IntermediateRoom {
// fn from(_room: Room) -> IntermediateRoom {
// fn hashmap_to_vec(_hash: HashMap<Position, String>, width: u8, height: u8) -> Vec<String> {
// let mut thing_ids = Vec::new();
//
// while thing_ids.len() < (width * height) as usize {
// thing_ids.push(String::new());
// }
//
// thing_ids
// }
//
// IntermediateRoom {
// name: "".to_string(),
// background: vec![],
// foreground: vec![]
// }
// }
// }
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use std::path::PathBuf; use std::path::PathBuf;