bl4-cli 0.5.20

Command-line tool for Borderlands 4 save editing
1
2
3
4
5
6
7
8
9
10
//! FNamePool and FNameReader for UE5
//!
//! Provides FName reading from the chunked FNamePool structure used in UE5.5+.
//! The pool uses block-based storage where each block is typically 64KB.

mod pool;
mod reader;

pub use pool::FNamePool;
pub use reader::FNameReader;