faf_replay_parser/sc2/
mod.rs1pub mod parser;
2pub mod replay;
3
4pub use replay::*;
5
6use crate::version::Version;
7
8#[derive(Debug)]
10pub enum SC2 {}
11
12impl Version for SC2 {
13 type Command = ReplayCommand;
14 type CommandId = ReplayCommandId;
15}