1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#[cfg(feature = "fast_shanten")]
mod fast_hand_calculator;
pub mod hand;
pub mod riichi_error;
pub mod rules;
pub mod scores;
#[cfg(not(feature = "fast_shanten"))]
mod shanten;
mod shape_finder;
pub mod shapes;
pub mod table;
pub mod tile;
pub mod yaku;