minor changes

This commit is contained in:
2025-08-21 18:14:17 +02:00
parent c0ec7f1167
commit e6d65c0e19

View File

@@ -1,14 +1,6 @@
use std::io; pub mod level;
pub mod perlin;
use crate::level::{LevelDat, create_nbt}; pub mod player;
pub mod superflat;
mod level;
mod perlin;
mod player;
mod superflat;
#[cfg(test)] #[cfg(test)]
mod test; mod test;
pub fn create_level(path: &str, data: &LevelDat) -> Result<(), io::Error> {
create_nbt(data, path)
}