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 vo |
|
|
|
import "texas-poker-bk/internal/game" |
|
|
|
type TableVO struct { |
|
TableNo int32 // 牌桌编号 |
|
RoundTimes int32 // 回合次数 |
|
Stage game.Stage // 游戏阶段 |
|
Players []*PlayerVO // 玩家 |
|
Robots []*RobotVO // 机器人 |
|
}
|
|
|