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