package game const ( ActionCancel int8 = 0 // 可(碰/杠/胡)时取消 ActionLack int8 = 1 // 定缺 ActionHit int8 = 2 // 出牌 ActionPeng int8 = 3 // 碰牌 ActionGang int8 = 4 // 杠牌 ActionHu int8 = 5 // 胡牌 // ActionZiMo int8 = 6 // 自摸 )