pub trait UniverseCommand: Send + Sync {
    fn run(&mut self, universe: &mut Universe);
}

Required Methods

Implementors