summaryrefslogtreecommitdiff
path: root/src/consts.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2020-04-18 17:45:28 +0200
committerJustin Wernick <justin@worthe-it.co.za>2020-04-18 17:45:28 +0200
commit5009074b5ba323e5312e999d766a01120990a61e (patch)
treecaf5c02671bd36b376be0d6d61bc9817d072d9d4 /src/consts.rs
parent80485b855c5628adc2fa619de21164ded1a0cae1 (diff)
Tests comparing against a replay, and fixing the found bugs
Diffstat (limited to 'src/consts.rs')
-rw-r--r--src/consts.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/consts.rs b/src/consts.rs
index 6ebc9af..69c9fe8 100644
--- a/src/consts.rs
+++ b/src/consts.rs
@@ -7,5 +7,8 @@ pub const SPEED_BOOST: usize = 15;
pub const BOOST_DURATION: usize = 5;
+pub const MIN_Y: usize = 1;
pub const HEIGHT: usize = 4;
+pub const MAX_Y: usize = MIN_Y + HEIGHT;
+
pub const WIDTH: usize = 1500;