Add flashlight

Co-authored-by: wm-c <wcmeathrel@gmail.com>
This commit is contained in:
Evan Pratten 2021-04-25 09:53:56 -04:00
parent 73ac4d25a9
commit 6c288e9178

View File

@ -55,10 +55,20 @@ pub struct Flashlight {
pub radius: f32 pub radius: f32
} }
impl Flashlight { impl Flashlight{
pub fn lvl1() -> Self { pub fn lvl1() -> Self {
Self { Self {
radius: 0.25 radius: 0.25,
}
}
pub fn lvl2() -> Self {
Self {
radius: 0.5,
}
}
pub fn lvl3() -> Self {
Self {
radius: 1.0,
} }
} }
} }