bevy/crates/bevy_app/src/lib.rs
Lachlan Sneff 17e7642611
Task System for Bevy (#384)
Add bevy_tasks crate to replace rayon
2020-08-29 12:35:41 -07:00

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,
};
}