diff --git a/src/robot.rs b/src/robot.rs index c81452e..932fa85 100644 --- a/src/robot.rs +++ b/src/robot.rs @@ -1,10 +1,10 @@ -/// A Robot *aka droid* is represented here. -/// Each robot must have a unique id. use rand::{ distributions::{Distribution, Standard}, Rng, }; +/// A Robot *aka droid* is represented here. +/// Each robot must have a unique id. pub struct Robot { pub id: u32, pub o: Orientation,