property: simplify imports
This commit is contained in:
parent
2a6e75a27e
commit
7823c3a9e2
@ -1,9 +1,10 @@
|
||||
mod dynamic_properties;
|
||||
pub mod impl_property;
|
||||
mod properties;
|
||||
mod property;
|
||||
pub mod property_serde;
|
||||
pub mod ron;
|
||||
|
||||
mod dynamic_properties;
|
||||
mod properties;
|
||||
mod property;
|
||||
mod type_registry;
|
||||
|
||||
pub use dynamic_properties::*;
|
||||
@ -14,3 +15,7 @@ pub use type_registry::*;
|
||||
pub use bevy_property_derive::*;
|
||||
pub use erased_serde;
|
||||
pub use serde;
|
||||
|
||||
pub mod prelude {
|
||||
pub use crate::{DynamicProperties, Properties, PropertiesVal, Property, PropertyVal};
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ pub use crate::{
|
||||
input::prelude::*,
|
||||
math::prelude::*,
|
||||
pbr::prelude::*,
|
||||
property::{DynamicProperties, Properties, PropertiesVal, Property, PropertyVal},
|
||||
property::prelude::*,
|
||||
render::prelude::*,
|
||||
scene::{Scene, SceneSpawner},
|
||||
sprite::{
|
||||
|
Loading…
Reference in New Issue
Block a user