pub type GameSystem = Box<dyn FnMut(&mut Game) + Send + Sync>;
A system that runs directly on a Game instead of in a specific Session.
Game
Session
struct GameSystem(/* private fields */);