From 3fb8f5651144ef21338c09c14cd3db03c6416136 Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Wed, 13 Nov 2019 14:19:45 +0100 Subject: Move the player around! --- src/world.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/world.rs') diff --git a/src/world.rs b/src/world.rs index 73fc802..c6f0912 100644 --- a/src/world.rs +++ b/src/world.rs @@ -17,10 +17,10 @@ enum CorridorType { Vertical, } -const LEFT: Movement = (-1, 0); -const RIGHT: Movement = (1, 0); -const UP: Movement = (0, -1); -const DOWN: Movement = (0, 1); +pub const LEFT: Movement = (-1, 0); +pub const RIGHT: Movement = (1, 0); +pub const UP: Movement = (0, -1); +pub const DOWN: Movement = (0, 1); pub fn apply_movement(point: Point, movement: Movement) -> Result { let x = point.0 as i32 + movement.0 as i32; -- cgit v1.2.3