// these are wrappers around HashMap and HashSet that use the EntityHasher
pub use ;
use FixedHasher;
// bevy's HashMap is `hashbrown::HashMap<K, V, S = FixedHasher>` which causes issues with type inference
// Adding this type alias to help with inference
pub type HashMap<K, V> = HashMap;
pub type HashSet<K> = HashSet;