pub trait WriteCmd: Component {
    fn execute(&mut self, world: &mut World);
}
Expand description

Trait for deferring modifications to the world.

Required methods

Executes on the world

Implementors