diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-01-24 08:29:14 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-01-24 08:29:14 +0100 |
| commit | a393e0a2f2c3678a3ea869dc1417fa269f2b1040 (patch) | |
| tree | 606df6a9284b5bd2dbf84fa5e3d363b8e6a01322 /src/platform/mod.rs | |
| parent | 72ddd7b7704f2087a52c9c0552446682918c513b (diff) | |
| download | dml-a393e0a2f2c3678a3ea869dc1417fa269f2b1040.tar.gz dml-a393e0a2f2c3678a3ea869dc1417fa269f2b1040.zip | |
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
Diffstat (limited to '')
| -rw-r--r-- | src/platform/mod.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/platform/mod.rs b/src/platform/mod.rs index 8118b29..24619ff 100644 --- a/src/platform/mod.rs +++ b/src/platform/mod.rs | |||
| @@ -1 +1,11 @@ | |||
| 1 | //! Platform-specific helpers for the DML launcher. | ||
| 2 | //! | ||
| 3 | //! This module provides utilities for handling file paths and directories | ||
| 4 | //! across operating systems. It includes functions to get standard locations | ||
| 5 | //! for Minecraft game data, assets, libraries, and version directories. | ||
| 6 | //! | ||
| 7 | //! # Submodules | ||
| 8 | //! - `paths`: Functions to construct paths for Minecraft data, assets, | ||
| 9 | //! libraries, and versions. | ||
| 10 | |||
| 1 | pub mod paths; | 11 | pub mod paths; |
