//! This example shows how to sequentially call //! promises by chaining them with `then` method. use bevy::prelude::*; use pecs::prelude::*; fn main() { App::new() .add_plugins(DefaultPlugins) .add_plugins(PecsPlugin) .add_systems(Startup, setup) .run(); } fn setup(mut commands: Commands, time: Res