aboutsummaryrefslogtreecommitdiffstats
path: root/src/minecraft/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/minecraft/mod.rs')
-rw-r--r--src/minecraft/mod.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/minecraft/mod.rs b/src/minecraft/mod.rs
index f1ce1f0..6dea71d 100644
--- a/src/minecraft/mod.rs
+++ b/src/minecraft/mod.rs
@@ -1,3 +1,18 @@
1//! Minecraft module for the DML launcher.
2//!
3//! This module provides the core functionality for interacting with
4//! Minecraft game files, including downloading assets, extracting
5//! game JARs, managing libraries, and launching the game.
6//!
7//! # Submodules
8//! - `downloads`: Async functions for downloading game files and assets.
9//! - `extraction`: Functions for extracting ZIP/JAR files to the correct
10//! locations.
11//! - `launcher`: Functions to launch the Minecraft process with the proper
12//! arguments.
13//! - `manifests`: Structures representing Minecraft version manifests,
14//! libraries, and rules.
15
1pub mod downloads; 16pub mod downloads;
2pub mod extraction; 17pub mod extraction;
3pub mod launcher; 18pub mod launcher;