diff --git a/src/main.rs b/src/main.rs index a362e2e..5bfd178 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,14 @@ use std::fs; use std::io; -/// Struct to store robot position +/// Struct to store the world. +struct World { + x: u32, + y: u32, + map: Vec, +} + +/// Struct to store robot position. struct Position { x: u32, y: u32,