This commit is contained in:
timokoesters 2020-03-21 21:01:50 +01:00
parent a861f6ad26
commit 5361705ca7

View File

@ -1,5 +1,5 @@
use crate::{comp, sync::Uid};
use comp::{item::ToolData, InventoryUpdateEvent};
use comp::{item::ToolKind, InventoryUpdateEvent};
use parking_lot::Mutex;
use serde::Deserialize;
use specs::Entity as EcsEntity;
@ -40,8 +40,8 @@ pub enum SfxEvent {
Fall,
ExperienceGained,
LevelUp,
Wield(ToolData),
Unwield(ToolData),
Wield(ToolKind),
Unwield(ToolKind),
Inventory(InventoryUpdateEvent),
}