wow-alchemy-data 0.2.0

Base data types used in parsing WoW binary formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod error;
pub mod std_impls;
pub mod types;
pub mod utils;

pub mod prelude {
    pub use crate::types::{
        DataVersion, Read, Seek, VWowChunkR, VWowDataR, VWowHeaderR, VWowReaderForChunk,
        VWowReaderForData, VWowReaderForHeader, VWowWriterForHeader, WowChunkR, WowDataR,
        WowHeaderR, WowHeaderW, WowReaderForChunk, WowReaderForData, WowReaderForHeader, WowVec,
        WowWriterForHeader, Write,
    };
    pub use byteorder::{ReadBytesExt, WriteBytesExt};
}