rmcl 0.4.0

A fully featured Minecraft TUI launcher
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// resource pack scanner backed by the shared pack.mcmeta reader.

use std::path::Path;

use super::entry::ContentEntry;

pub fn scan_one_resource_pack(path: &Path, file_stem: &str, enabled: bool) -> ContentEntry {
    super::packs::scan_one_pack(path, file_stem, enabled)
}

pub fn scan_resource_packs(instances_dir: &Path, instance_name: &str) -> Vec<ContentEntry> {
    super::packs::scan_packs(instances_dir, instance_name, "resourcepacks")
}

#[cfg(test)]
#[path = "../tests/content/resource_packs.rs"]
mod tests;