bevy/crates/bevy_app/src/lib.rs
2020-10-29 13:04:28 -07:00

29 lines
571 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 plugin_group;
mod schedule_runner;
pub use app::*;
pub use app_builder::*;
pub use bevy_derive::DynamicPlugin;
pub use event::*;
pub use plugin::*;
pub use plugin_group::*;
pub use schedule_runner::*;
pub mod prelude {
pub use crate::{
app::App,
app_builder::AppBuilder,
event::{EventReader, Events},
stage, DynamicPlugin, Plugin, PluginGroup,
};
}