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
//! LSX (XML) format module
//!
//!

mod document;
mod reader;
mod writer;

pub use document::{LsxAttribute, LsxDocument, LsxNode, LsxRegion};
pub use reader::{parse_lsx, read_lsx};
pub use writer::{serialize_lsx, write_lsx};