Skip to content

Commit

Permalink
Fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychedelia committed Sep 15, 2024
1 parent 5cda014 commit 76fb48d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions nannou/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ use bevy::input::keyboard::{Key, KeyboardInput};
use bevy::input::mouse::{MouseButtonInput, MouseWheel};
use bevy::input::ButtonState;
use bevy::prelude::*;
use bevy::reflect::{ApplyError, DynamicTypePath, GetTypeRegistration, ReflectMut, ReflectOwned, ReflectRef, TypeInfo, Typed};
use bevy::reflect::{
ApplyError, DynamicTypePath, GetTypeRegistration, ReflectMut, ReflectOwned, ReflectRef,
TypeInfo, Typed,
};
use bevy::render::extract_resource::ExtractResource;
use bevy::window::{
ExitCondition, Monitor, PrimaryMonitor, PrimaryWindow, WindowClosed, WindowEvent,
Expand All @@ -36,6 +39,7 @@ use bevy_inspector_egui::DefaultInspectorConfigPlugin;

use crate::frame::{Frame, FramePlugin};
use crate::prelude::bevy_ecs::system::SystemState;
use crate::prelude::bevy_reflect::DynamicTyped;
use crate::prelude::render::{NannouMaterialPlugin, NannouMesh, ShaderModel};
use crate::prelude::NannouShaderModelPlugin;
use crate::render::{
Expand All @@ -57,7 +61,6 @@ use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering};
use std::sync::Arc;
use std::time::Duration;
use std::{self};
use crate::prelude::bevy_reflect::DynamicTyped;

/// The user function type for initialising their model.
pub type ModelFn<Model> = fn(&App) -> Model;
Expand Down

0 comments on commit 76fb48d

Please sign in to comment.