summaryrefslogtreecommitdiff
path: root/src/consts.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2022-04-19 21:36:41 +0200
committerJustin Wernick <justin@worthe-it.co.za>2022-04-19 21:36:41 +0200
commitf8a0e0f7f2f9cd5fb69899b5d7037bc969df4339 (patch)
treefccd2b409974c350485b096858f8f5bf8dad915f /src/consts.rs
parent2f23ab85adb7ffc5866cc948bad0c35a7d41a05b (diff)
Refile for merging repos
Diffstat (limited to 'src/consts.rs')
-rw-r--r--src/consts.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/consts.rs b/src/consts.rs
deleted file mode 100644
index 8010eba..0000000
--- a/src/consts.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-pub const SPEED_0: u16 = 0;
-pub const SPEED_1: u16 = 3;
-pub const SPEED_2: u16 = 6;
-pub const SPEED_3: u16 = 8;
-pub const SPEED_4: u16 = 9;
-pub const SPEED_BOOST: u16 = 15;
-
-pub const BOOST_DURATION: u8 = 5;
-
-pub const MIN_Y: u8 = 1;
-pub const HEIGHT: u8 = 4;
-pub const MAX_Y: u8 = MIN_Y + HEIGHT;
-
-pub const WIDTH: u16 = 1500;