1use crate::InventoryItem; 2 3pub trait InventoryItemProvider { 4 fn type_info() -> InventoryItem; 5}