pub fn launch<F: FnOnce() -> World>(builder: F)
Launch the UI using a builder function that returns a World.
World
Example: snow_ui::launch(world); where fn world() -> World { ... }.
snow_ui::launch(world);
fn world() -> World { ... }