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/config/mod.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/config/mod.rs') diff --git a/src/config/mod.rs b/src/config/mod.rs index c5fc004..066154a 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -1,3 +1,12 @@ -pub mod loader; +//! Configuration module for the DML launcher. +//! +//! This module contains submodules and helpers for loading, parsing, and +//! managing configuration files and settings. It abstracts the details +//! of where configuration is stored and how it is represented in memory. +//! +//! # Submodules +//! - `loader`: Functions to load and parse configuration from disk or +//! environment variables. +pub mod loader; pub use loader::Config; -- cgit v1.2.3