mahjong_core/game/charleston/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use super::Game;
use serde::{Deserialize, Serialize};
use ts_rs::TS;

#[derive(Clone, Serialize, Deserialize, Debug, TS)]
#[ts(export)]
pub struct Charleston {}

pub enum MoveCharlestonError {
    CharlestonAlreadyDone,
}

impl Game {
    pub fn move_charleston(&self) -> Result<(), MoveCharlestonError> {
        // if !self.charleston.is_some() {
        //     return Err(MoveCharlestonError::CharlestonAlreadyDone);
        // }

        Ok(())
    }
}