1 2 3 4 5 6 7 8 9 10
use specs; use specs::Component; use specs::HashMapStorage; #[derive(Component, Debug, VisitEntities, VisitEntitiesMut)] #[storage(HashMapStorage)] pub struct Replacement { pub to: specs::Entity, }