gob_rs 1.0.0

Library for parsing and constructing archives of the LucasArts GOB format.
Documentation
gob_rs-1.0.0 has been yanked.

Examples

Parsing GOB file

use std::path::PathBuf;
use gob_rs::core::Gob;

let gob = Gob::from(PathBuf::from("/path/to/gob.GOB"));

Parsing GOB-like directory

use gob_rs::core::Gob;

let gob = Gob::from(PathBuf::from("/path/to/gob/"));