Skip to content

Commit

Permalink
Rustfmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychedelia committed Jan 17, 2024
1 parent 391c244 commit 768df63
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
3 changes: 1 addition & 2 deletions bevy_nannou/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ impl Plugin for NannouPlugin {
}
}


#[cfg(test)]
mod tests {
use bevy::app::App;
Expand All @@ -22,4 +21,4 @@ mod tests {
app.add_plugins(super::NannouPlugin);
app.update();
}
}
}
5 changes: 2 additions & 3 deletions bevy_nannou_draw/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ use bevy::prelude::*;
pub struct NannouDrawPlugin;

impl Plugin for NannouDrawPlugin {
fn build(&self, _app: &mut App) {
}
}
fn build(&self, _app: &mut App) {}
}
5 changes: 2 additions & 3 deletions bevy_nannou_render/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ use bevy::prelude::*;
pub struct NannouRenderPlugin;

impl Plugin for NannouRenderPlugin {
fn build(&self, _app: &mut App) {
}
}
fn build(&self, _app: &mut App) {}
}
5 changes: 2 additions & 3 deletions bevy_nannou_wgpu/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ use bevy::prelude::*;
struct NannouWgpuPlugin;

impl Plugin for NannouWgpuPlugin {
fn build(&self, app: &mut App) {
}
}
fn build(&self, app: &mut App) {}
}

0 comments on commit 768df63

Please sign in to comment.