encounter-rs 0.1.0

Resolution engine for multi-character encounters with pluggable scoring backends
Documentation
1
2
3
4
5
6
7
8
9
//! Resolution protocols for encounter resolution.

pub mod background;
pub mod multi_beat;
pub mod single;

pub use background::{BackgroundScheme, SchemePhase};
pub use multi_beat::MultiBeat;
pub use single::SingleExchange;