30 lines
584 B
Rust
30 lines
584 B
Rust
/// The names of the default App stages
|
|
pub mod stage;
|
|
/// The names of the default App startup stages
|
|
pub mod startup_stage;
|
|
|
|
mod app;
|
|
mod app_builder;
|
|
mod event;
|
|
mod plugin;
|
|
mod schedule_runner;
|
|
mod task_pool_options;
|
|
|
|
pub use app::*;
|
|
pub use app_builder::*;
|
|
pub use bevy_derive::DynamicPlugin;
|
|
pub use event::*;
|
|
pub use plugin::*;
|
|
pub use schedule_runner::*;
|
|
pub use task_pool_options::*;
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
app::App,
|
|
app_builder::AppBuilder,
|
|
event::{EventReader, Events},
|
|
plugin::Plugin,
|
|
stage, DynamicPlugin,
|
|
};
|
|
}
|