pub fn run_tui<G>(game: G) -> ExitCodewhere
G: PrintableGame + Clone + Serialize + DeserializeOwned,
G::State: Clone + Serialize + DeserializeOwned,
G::Action: Clone + DeserializeOwned + Debug,
G::View: Serialize,Expand description
Like run, but play opens the retroglyph dashboard instead of the text
stepper. Requires the game to implement PrintableGame.