From 72ddd7b7704f2087a52c9c0552446682918c513b Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Thu, 22 Jan 2026 23:14:08 +0100 Subject: Implement basic game files download logic Implement core clap arguments Respect XDG_BASE_DIR Currently library extraction is broken because it assumes every instace has it's own library folder. This should be refactored so instances share libraries Signed-off-by: Filip Wandzio --- src/minecraft/extraction.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/minecraft/extraction.rs (limited to 'src/minecraft/extraction.rs') diff --git a/src/minecraft/extraction.rs b/src/minecraft/extraction.rs new file mode 100644 index 0000000..5175ee0 --- /dev/null +++ b/src/minecraft/extraction.rs @@ -0,0 +1,10 @@ +use log::info; + +use crate::errors::McError; +pub fn extract_natives( + _cfg: &crate::config::Config, + version: &crate::minecraft::manifests::Version, +) -> Result<(), McError> { + info!("Extracting natives for {}", version.id); + Ok(()) +} -- cgit v1.2.3