From a393e0a2f2c3678a3ea869dc1417fa269f2b1040 Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Sat, 24 Jan 2026 08:29:14 +0100 Subject: Resolve audio not loading bug Ensure all assets are downloading for each version Temporarily disable minecraft versions older than 1.8 because of the asset/manifest loading issues Implement basic documentation of modules Implement basic async/multithreading for downloading assets --- src/util/mod.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/util/mod.rs') diff --git a/src/util/mod.rs b/src/util/mod.rs index 8176b9b..b8531c6 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -1,2 +1,14 @@ +//! Utility module for the DML launcher. +//! +//! This module contains general-purpose helper functions used throughout +//! the project. It is designed to provide reusable functionality without +//! being specific to Minecraft or configuration. +//! +//! # Submodules +//! - `fs`: File system utilities such as safe file creation, reading, and +//! writing. +//! - `sha1`: Functions to compute SHA-1 hashes for files and data integrity +//! checks. + pub mod fs; pub mod sha1; -- cgit v1.2.3