Skip to content

Commit

Permalink
explicit prelude imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Apr 7, 2021
1 parent 5cea17b commit 177ac26
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/egui_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use bevy::{
asset::{AssetEvent, Assets, Handle},
core::AsBytes,
log,
prelude::*,
prelude::World,
render::{
pass::{
ClearColor, LoadOp, Operations, PassDescriptor,
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ use bevy::{
asset::{Assets, Handle, HandleUntyped},
input::InputSystem,
log,
prelude::*,
prelude::{IntoSystem, ParallelSystemDescriptorCoercion, StageLabel, SystemLabel, SystemStage},
reflect::TypeUuid,
render::{
pipeline::{
Expand Down
2 changes: 1 addition & 1 deletion src/systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use bevy::{
Input,
},
log,
prelude::*,
prelude::{Res, ResMut},
window::{CursorLeft, CursorMoved, ReceivedCharacter, Windows},
winit::WinitWindows,
};
Expand Down
3 changes: 2 additions & 1 deletion src/transform_node.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use crate::{EguiSettings, WindowSize, EGUI_TRANSFORM_RESOURCE_BINDING_NAME};
use bevy::{
core::AsBytes,
prelude::*,
ecs::world::World,
prelude::{IntoSystem, Local, Res, ResMut, System},
render::{
render_graph::{CommandQueue, Node, ResourceSlots, SystemNode},
renderer::{
Expand Down

0 comments on commit 177ac26

Please sign in to comment.