pub trait Command: 'static + Send + Sync {
    fn write(self, world: &mut World);
}
Expand description

A World mutation.

Required Methods

Implementors