From 6c288e91787412918a1fffbdd8ce07730f49eca4 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sun, 25 Apr 2021 09:53:56 -0400 Subject: [PATCH] Add flashlight Co-authored-by: wm-c --- src/items.rs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/items.rs b/src/items.rs index fe5f47e..1b5e155 100644 --- a/src/items.rs +++ b/src/items.rs @@ -55,10 +55,20 @@ pub struct Flashlight { pub radius: f32 } -impl Flashlight { +impl Flashlight{ pub fn lvl1() -> Self { Self { - radius: 0.25 + radius: 0.25, + } + } + pub fn lvl2() -> Self { + Self { + radius: 0.5, + } + } + pub fn lvl3() -> Self { + Self { + radius: 1.0, } } }