casc_lib/root/mod.rs
1//! Root file handling for CASC storage.
2//!
3//! The root file maps FileDataIDs (FDIDs) to content keys (CKeys), enabling
4//! lookup of game files by their numeric identifier. Different WoW versions
5//! use different root file formats - Legacy (pre-8.2), MFST V1 (8.2+), and
6//! MFST V2 (11.1.0+) - all of which are supported.
7
8/// Locale and content flag bitmask types used in root file entries.
9pub mod flags;
10/// Root file format detection and binary parsing.
11pub mod parser;