I have a question about the Action class in the Python API.
Its constructor has the following signature:
def __init__(self, action_type: ActionType, tile: int = 0, consume_tiles: list[int] = [])
However, from this signature alone, I cannot tell how to distinguish between a tsumogiri action and a non-tsumogiri (tedashi) action when constructing an Action object.
Could you clarify how these two cases are supposed to be represented?