tickwise 0.1.0

Record, replay, and diff deterministic simulations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Tickwise: record, replay, and diff deterministic simulations.
//!
//! Tickwise is an engine-agnostic recording, replay, and desync-debugging
//! toolkit for deterministic multiplayer games. It is an observer: you drive
//! your own game loop and call into the kit, and Tickwise never runs the
//! simulation itself.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub mod format;
pub mod probe;
pub mod recorder;

pub use format::{SessionMeta, SnapshotPolicy};
pub use probe::{DeterminismProbe, StateDump};
pub use recorder::{RecordError, Recorder, RecorderConfig};