boon-deadlock 0.1.0

Boon is a Deadlock demo / replay file parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Demo file parsing and command handling.
//!
//! This module provides the main [`Parser`] for reading Deadlock demo files,
//! along with command type definitions and header structures.

mod command;
pub mod decode;
mod parser;

pub use command::{CmdHeader, EDemoCommands, SvcMessages, command_name};
pub use decode::decode_event_payload;
pub use parser::{Context, GameEvent, MessageInfo, Parser};