nwnrs-key 0.0.8

Neverwinter Nights KEY index reader and writer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

mod io;
mod types;

pub use io::*;
pub use types::*;

/// Common imports for consumers of this crate.
pub mod prelude {
    pub use crate::{
        BifResolver, KeyBifContents, KeyBifEntry, KeyBifVersion, KeyError, KeyResult, KeyTable,
        ResId, VariableResource, read_key_table, read_key_table_from_file, write_key_and_bif,
        write_key_table_archive,
    };
}