rmcl 0.4.0

A fully featured Minecraft TUI launcher
1
2
3
4
5
6
7
8
9
// data pack scanning backed by the same pack.mcmeta reader as resource packs.

use std::path::Path;

use super::entry::ContentEntry;

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