riichi_elements/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2#![doc = include_str!("../README.md")]
3
4pub mod hand_group;
5pub mod meld;
6pub mod player;
7pub mod tile;
8pub mod tile_set;
9pub mod typedefs;
10pub mod utils;
11pub mod wall;
12
13pub mod prelude {
14    pub use crate::{
15        hand_group::*,
16        meld::*,
17        player::*,
18        tile::*,
19        tile_set::*,
20        typedefs::*,
21        wall::{self, PartialWall, PartialWallDisplayMethod, Wall, WallDisplayMethod}
22    };
23}