brdb 0.5.0

A library for reading and writing Brickadia's World files.
Documentation
1
2
3
4
5
6
7
8
/// Reads a world and prints out its SQLite schema
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let path = std::path::PathBuf::from("./world.brdb");

    println!("{}", brdb::Brdb::open(path)?.sqlite_schema()?);

    Ok(())
}