From 608cd2ce23b6f14d38cddbcfa498587927b5a86e Mon Sep 17 00:00:00 2001 From: crumblingstatue Date: Tue, 4 Apr 2023 23:30:06 +0200 Subject: [PATCH] Remove unused import --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index c9c6763..e620650 100644 --- a/src/app.rs +++ b/src/app.rs @@ -13,7 +13,7 @@ use crate::{ game::{for_each_tile_on_screen, Biome, GameState}, graphics::{self, NATIVE_RESOLUTION}, input::Input, - math::{px_per_frame_to_km_h, wp_to_tp, WorldPos, M_PER_PX, TILE_SIZE}, + math::{px_per_frame_to_km_h, WorldPos, M_PER_PX, TILE_SIZE}, res::Res, world::Tile, };