hldemo 0.3.0

A parser for Half-Life (Goldsource) demo files using nom.
Documentation
1
2
3
4
5
6
use super::*;

#[cfg_attr(rustfmt, rustfmt_skip)]
named!(pub console_command_data<FrameData>,
    map!(take!(64), |command| FrameData::ConsoleCommand(ConsoleCommandData { command }))
);