mahjong_core/
macros.rs

1
2
3
4
5
6
7
8
macro_rules! derive_game_common {
    ($i:item) => {
        #[derive(Clone, Debug, serde::Serialize, serde::Deserialize)]
        $i
    };
}

pub(crate) use derive_game_common;