race_api/
lib.rs

1//! This crate contains the basics of the protocol
2//! - Game handler interface
3//! - Randomness implementation
4//! - Encryption/decryption implementation
5
6pub mod decision;
7pub mod effect;
8pub mod engine;
9pub mod error;
10pub mod event;
11pub mod prelude;
12pub mod random;
13pub mod types;