Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile committed Nov 21, 2023
1 parent 75381df commit 42111df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions emergence_lib/src/asset_management/manifest/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ where
fn load<'a>(
&'a self,
reader: &'a mut bevy::asset::io::Reader,
settings: &'a Self::Settings,
load_context: &'a mut LoadContext,
_settings: &'a Self::Settings,
_load_context: &'a mut LoadContext,
) -> BoxedFuture<'a, Result<Self::Asset, Self::Error>> {
Box::pin(async move {
let mut bytes = Vec::new();
Expand Down
2 changes: 1 addition & 1 deletion emergence_lib/src/player_interaction/picking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//! available.
use bevy::{prelude::*, window::PrimaryWindow};
use bevy_mod_raycast::{
deferred::{RaycastMethod, RaycastSource, RaycastSystem},
deferred::{RaycastMethod, RaycastSource},
DefaultRaycastingPlugin,
};
use leafwing_input_manager::prelude::ActionState;
Expand Down
1 change: 0 additions & 1 deletion emergence_lib/tests/serde_manifests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ use emergence_lib::{
SoilWaterCapacity,
},
};
use leafwing_abilities::prelude::Pool;

#[test]
fn can_serialize_item_manifest() {
Expand Down

0 comments on commit 42111df

Please sign in to comment.