landlord 0.1.1

Magic: The Gathering card draw and mulligan simulator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Mulligan strategies
//!
//! The `mulligan` module defines a `Mulligan` trait and
//! several implementations of different mulligan strategies.

mod london;
mod mulligan;
mod never;
mod vancouver;

pub use london::London;
pub use mulligan::Mulligan;
pub use never::Never;
pub use vancouver::Vancouver;