mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
remove explicit type
This commit is contained in:
parent
151675a5ef
commit
0049715070
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ fn main() {
|
||||||
AppBuilder::new()
|
AppBuilder::new()
|
||||||
.add_defaults()
|
.add_defaults()
|
||||||
.setup_world(setup)
|
.setup_world(setup)
|
||||||
.setup_systems(|builder: Builder| builder.add_system(build_rotator_system()))
|
.setup_systems(|builder| builder.add_system(build_rotator_system()))
|
||||||
.run();
|
.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue