From e6b8d4f407b079d5eaf8bbe440a370cf4a111fe4 Mon Sep 17 00:00:00 2001 From: wm-c Date: Sat, 24 Apr 2021 16:46:59 -0400 Subject: [PATCH] fixed an error --- src/items.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/items.rs b/src/items.rs index 7971866..0372e9f 100644 --- a/src/items.rs +++ b/src/items.rs @@ -22,6 +22,9 @@ pub struct AirBag; #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] pub struct Flashlight; +#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] +pub struct Flippers; + #[derive(Debug, PartialEq, Clone, Serialize, Deserialize)] #[serde(tag = "t", content = "c")] pub enum ShopItems { @@ -76,6 +79,3 @@ impl ShopItems{ } } -pub struct Flippers { - pub speed_increase: f32 -} \ No newline at end of file