mirror of
https://github.com/bevyengine/bevy
synced 2025-01-12 21:29:03 +00:00
16 lines
375 B
Rust
16 lines
375 B
Rust
|
use crate::{
|
||
|
self as bevy_reflect, impl_reflect_value, prelude::ReflectDefault, ReflectDeserialize,
|
||
|
ReflectSerialize,
|
||
|
};
|
||
|
|
||
|
impl_reflect_value!(::petgraph::graph::NodeIndex(
|
||
|
Default,
|
||
|
Serialize,
|
||
|
Deserialize
|
||
|
));
|
||
|
impl_reflect_value!(::petgraph::graph::DiGraph<
|
||
|
N: ::std::clone::Clone,
|
||
|
E: ::std::clone::Clone,
|
||
|
Ix: ::petgraph::graph::IndexType
|
||
|
>());
|