You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package game |
|
|
|
const ( |
|
ActionCancel int8 = 0 // 可(碰/杠/胡)时取消 |
|
ActionLack int8 = 1 // 定缺 |
|
ActionHit int8 = 2 // 出牌 |
|
ActionPeng int8 = 3 // 碰牌 |
|
ActionGang int8 = 4 // 杠牌 |
|
ActionHu int8 = 5 // 胡牌 |
|
// ActionZiMo int8 = 6 // 自摸 |
|
)
|
|
|