Trait bevy_ecs::system::Command[][src]

pub trait Command: Send + Sync + 'static {
    fn write(self: Box<Self>, world: &mut World);
}

A World mutation

Required methods

fn write(self: Box<Self>, world: &mut World)[src]

Loading content...

Implementors

impl<T> Command for InsertBundle<T> where
    T: Bundle + 'static, 
[src]

impl<T: Component> Command for InsertResource<T>[src]

impl<T: Component> Command for RemoveResource<T>[src]

Loading content...