boon-deadlock 0.2.0

Boon is a Deadlock demo / replay file parser
Documentation
1
2
3
4
5
6
7
8
9
10
//! I/O utilities for reading demo file data.
//!
//! This module provides low-level readers for both bit-level and byte-level
//! access to demo file data.

mod bitreader;
mod reader;

pub use bitreader::BitReader;
pub use reader::ByteReader;