riichi 0.1.0

Japanese Riichi Mahjong game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! An non-exhaustive list of recognized  [`Yaku`]'s (役) and utils for working with them.
//!
//! <https://riichi.wiki/Yaku>
//!

mod builder;
mod conflict;
mod known;
mod standard;

pub use self::{
    builder::*,
    conflict::*,
    known::Yaku,
    standard::STANDARD_YAKU,
};