diff --git a/src/world.rs b/src/world.rs index ab9ac8e..357b82d 100644 --- a/src/world.rs +++ b/src/world.rs @@ -1,5 +1,5 @@ /// The World is represented here. pub struct World { - x: i32, - y: i32, + pub x: i32, + pub y: i32, }