1use bevy_macro_utils::BevyManifest; 2use syn::Path; 3 4/// Returns the correct path for `bevy_reflect`. 5pub(crate) fn get_bevy_reflect_path() -> Path { 6 BevyManifest::shared().get_path("bevy_reflect") 7} 8 9