mirror of
https://github.com/QRouland/SGTool.git
synced 2026-08-14 22:06:57 +00:00
13 lines
320 B
Rust
13 lines
320 B
Rust
#![warn(missing_docs)]
|
|
//! sgtool is a library for analyze of the replay of the Stormgate game.
|
|
//!
|
|
//!
|
|
//! # Example
|
|
//! ```
|
|
//! let replay_path = "replay.SGReplay";
|
|
//! let mut buffer : Vec<u8> = vec![];
|
|
//! let replay : Replay = Replay::load_file(replay_path, &mut buffer)?;
|
|
//! ```
|
|
//!
|
|
pub mod parser;
|
|
mod protos; |