36 lines
825 B
Rust
36 lines
825 B
Rust
//! This crate is about everything concerning the highest-level, application layer of a Bevy app.
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
mod app;
|
|
mod main_schedule;
|
|
mod plugin;
|
|
mod plugin_group;
|
|
mod schedule_runner;
|
|
|
|
#[cfg(feature = "bevy_ci_testing")]
|
|
mod ci_testing;
|
|
|
|
pub use app::*;
|
|
pub use bevy_derive::DynamicPlugin;
|
|
pub use main_schedule::*;
|
|
pub use plugin::*;
|
|
pub use plugin_group::*;
|
|
pub use schedule_runner::*;
|
|
|
|
#[allow(missing_docs)]
|
|
pub mod prelude {
|
|
#[cfg(feature = "bevy_reflect")]
|
|
#[doc(hidden)]
|
|
pub use crate::AppTypeRegistry;
|
|
#[doc(hidden)]
|
|
pub use crate::{
|
|
app::App,
|
|
main_schedule::{
|
|
First, FixedUpdate, Last, Main, PostStartup, PostUpdate, PreStartup, PreUpdate,
|
|
Startup, StateTransition, Update,
|
|
},
|
|
DynamicPlugin, Plugin, PluginGroup,
|
|
};
|
|
}
|