fix clippy
Some checks are pending
Rust Checks / checks (push) Waiting to run
Rust Checks / checks (pull_request) Successful in 2m15s

This commit is contained in:
CoCo_Sol 2024-04-01 16:00:07 +02:00
parent 301f8b7bce
commit fdee1c330e

View file

@ -24,6 +24,7 @@ impl Plugin for OwnershipPlugin {
#[derive(Resource)] #[derive(Resource)]
pub struct OwnershipColorContrast(pub f32); pub struct OwnershipColorContrast(pub f32);
/// Init resources related to the ownership of the tiles.
fn setup_ownership_resources(mut commands: Commands) { fn setup_ownership_resources(mut commands: Commands) {
commands.insert_resource(OwnershipColorContrast(0.4)); commands.insert_resource(OwnershipColorContrast(0.4));
} }