cargo fix

This commit is contained in:
Flima Desktop 2025-12-14 22:04:23 +00:00
parent 6ad1488070
commit b5e582b3c7
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
use std::fs;
use std::path::{Path, PathBuf};
use std::path::PathBuf;
pub fn list_files(dir: &str) -> Vec<PathBuf> {
fs::read_dir(dir)

View File

@ -1,5 +1,5 @@
use crate::{
camera::{self as cam, FirstPersonCamera},
camera::{self as cam},
engine::{self, World},
graphics_util::draw_cuboid,
};