Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_reflect/derive/src/meta.rs
6599 views
1
use bevy_macro_utils::BevyManifest;
2
use syn::Path;
3
4
/// Returns the correct path for `bevy_reflect`.
5
pub(crate) fn get_bevy_reflect_path() -> Path {
6
BevyManifest::shared().get_path("bevy_reflect")
7
}
8
9