Function launch

Source
pub fn launch<GameState: PeterEngineApp>(
    game_state: GameState,
) -> Result<(), Error>
Examples found in repository?
examples/test.rs (line 118)
117fn main() {
118  launch(TestApp {}).unwrap();
119}