summaryrefslogtreecommitdiff
path: root/src/entities/bug.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-04-15 12:58:16 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-04-15 12:58:16 +0200
commita70b7befc08646ea92282fa30b12bae811f22203 (patch)
treef3868a863063b38a483f7ef8c8d123afa946d343 /src/entities/bug.rs
parent1c3cf1cc0dd2cb592c6535379b61688d4b90b430 (diff)
Added game over popup
Diffstat (limited to 'src/entities/bug.rs')
-rw-r--r--src/entities/bug.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/bug.rs b/src/entities/bug.rs
index 482e5c4..913253c 100644
--- a/src/entities/bug.rs
+++ b/src/entities/bug.rs
@@ -8,7 +8,7 @@ pub struct Bug {
pub alive: bool
}
-const SPEED: f64 = 75.;
+const SPEED: f64 = 175.;
impl Bug {
pub fn new(x: f64, y: f64, facing: f64) -> Bug {