fix fmt
All checks were successful
Rust Checks / checks (push) Successful in 3m23s
Rust Checks / checks (pull_request) Successful in 2m47s

This commit is contained in:
CoCo_Sol 2024-03-09 15:56:54 +01:00
parent bfbb45e606
commit eb883dee08
2 changed files with 2 additions and 2 deletions

View file

@ -12,4 +12,4 @@ fn main() {
.add_plugins(RendererPlugin)
.add_plugins(CameraPlugin)
.run();
}
}

View file

@ -15,7 +15,7 @@ impl Plugin for RendererPlugin {
Update,
render_map.run_if(in_state(crate::CurrentScene::Game)),
)
.insert_resource(ClearColor(Color::rgb_u8(129,212,250)));
.insert_resource(ClearColor(Color::rgb_u8(129, 212, 250)));
}
}