faf_replay_parser/scfa/
mod.rs

1//! Supreme Commander: Forged Alliance data format
2
3pub mod bytes;
4pub mod parser;
5pub mod replay;
6
7pub use self::bytes::{body_offset, body_ticks, has_frame};
8pub use replay::*;
9
10use crate::version::Version;
11
12/// Replay version for Supreme Commander: Forged Alliance replays. May also work with vanilla
13/// Supreme Commander replays as well.
14#[derive(Debug)]
15pub enum SCFA {}
16
17impl Version for SCFA {
18    type Command = ReplayCommand;
19    type CommandId = ReplayCommandId;
20}