Skip to content

Commit

Permalink
Auto format
Browse files Browse the repository at this point in the history
  • Loading branch information
alepez committed May 22, 2023
1 parent 064c1fe commit 2c22d0e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/keybinding.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::{
drawing::ClearEvent,
local_chalk::{ChangeColorEvent, ShrinkEvent, GrowEvent},
local_chalk::{ChangeColorEvent, GrowEvent, ShrinkEvent},
};
use bevy::prelude::*;

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
mod collab;
mod debug;
mod drawing;
mod keybinding;
mod local_chalk;
mod ui;
mod keybinding;

use bevy::log::LogPlugin;
use bevy::{prelude::*, window::Window};
Expand All @@ -15,9 +15,9 @@ use crate::collab::CollabPlugin;
pub use crate::collab::CollabPluginOpt as CollabOpt;
use crate::debug::DebugPlugin;
use crate::drawing::DrawingPlugin;
use crate::keybinding::KeybindingPlugin;
use crate::local_chalk::LocalChalkPlugin;
use crate::ui::UiPlugin;
use crate::keybinding::KeybindingPlugin;

#[derive(Debug)]
pub struct Opt {
Expand Down
2 changes: 1 addition & 1 deletion src/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use bevy::prelude::*;

use crate::{local_chalk::LocalChalk, drawing::ClearEvent};
use crate::{drawing::ClearEvent, local_chalk::LocalChalk};

pub(crate) struct UiPlugin;

Expand Down

0 comments on commit 2c22d0e

Please sign in to comment.