add vec of robot

This commit is contained in:
Martin HART 2020-10-28 12:00:17 +01:00
parent f88c972ceb
commit 77785e0d6d
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let raw_conf = open_file(matches.value_of("file").unwrap_or("two_robots.txt"))?;
let robot_pool: Vec<robot::Robot> = Vec::new();
Ok(())
}