File output and breaking refactors
calc::get_hand_score
method signature changed to not take raw string input. as seen below
pub fn get_hand_score(
hand: Hand, //previously a string
dora: Option<Vec<TileGroup>>, //previously a string instead of TileGroup
tsumo: bool,
riichi: bool,
doubleriichi: bool,
ippatsu: bool,
haitei: bool,
rinshan: bool,
chankan: bool,
tenhou: bool,
honba: HonbaCounter,
) -> Result<Score, HandErr
- File output flag added (may be jank)
--output
or-o
Full Changelog: v1.6.0...v1.7.0