Type Alias GameSystem

Source
pub type GameSystem = Box<dyn FnMut(&mut Game) + Sync + Send>;
Expand description

A system that runs directly on a Game instead of in a specific Session.

Aliased Typeยง

pub struct GameSystem(/* private fields */);