bevy/crates/bevy_app
Nuutti Kotivuori ab3b429211
Relax FnMut to FnOnce in app::edit_schedule (#8982)
# Objective

Currently `App::edit_schedule` takes in `impl FnMut(&mut Schedule)`, but
it calls the function only once. It is probably the intention has been
to have it take `FnOnce` instead.

## Solution

- Relax the parameter to take `FnOnce` instead of `FnMut`
2023-06-29 00:26:34 +00:00
..
src Relax FnMut to FnOnce in app::edit_schedule (#8982) 2023-06-29 00:26:34 +00:00
Cargo.toml correctly setup everything in the default run_once runner (#8740) 2023-06-05 20:54:12 +00:00