maclarian 0.1.3

Larian file format library for Baldur's Gate 3 - PAK, LSF, LSX, GR2, DDS, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! LSF (Larian Story Format) binary format module
//!
//!

mod document;
mod reader;
mod writer;

// Public API
pub use document::{LsfAttribute, LsfDocument, LsfNode};
pub use reader::{parse_lsf_bytes, read_lsf};
pub use writer::{serialize_lsf, serialize_lsf_with_format, write_lsf, write_lsf_with_format};

// Internal API (used by converter module)
pub(crate) use document::LsfMetadataFormat;