From 770c8347e077f0ab5100a3e9a475c12ff2ad7d14 Mon Sep 17 00:00:00 2001 From: Jack Hou Date: Sun, 17 Dec 2023 21:12:29 +0100 Subject: [PATCH] Fix lint error. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 26bb7c0..c9687e2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,13 +1,13 @@ // disable console on windows for release builds #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] +use bevy::asset::AssetMetaCheck; use bevy::prelude::*; use bevy::window::PrimaryWindow; use bevy::winit::WinitWindows; use bevy::DefaultPlugins; use bevy_game::GamePlugin; // ToDo: Replace bevy_game with your new crate name. use std::io::Cursor; -use bevy::asset::AssetMetaCheck; use winit::window::Icon; fn main() {