package frame_type // 中间计算结果 type MidResult struct { AxleResult []*AxleResultItem `json:"axleResult"` // 当前盘面 SpinResult *OneSpinResult `json:"spinResult"` // 当前盘面结果 EliminateResult [][]int `json:"eliminateResult"` // 消除元素索引 RestAxleResult []*AxleResultItem `json:"restAxleResult"` // 消除后剩余的元素 FreeTime int `json:"freeTime"` // 免费的次数 WildBet int `json:"wildBet"` // 百搭翻倍 IsTriggerFree bool `json:"isTriggerFree"` // 是否触发免费 } // 赢钱线 type WinLine struct { Items [][]*AxleItem `json:"items"` Score float64 `json:"score"` } // scatter的信息 type ScatterInfo struct { Num int `json:"num"` // scatter的数量 Win float64 `json:"win"` // scatter的奖励 Free int `json:"free"` // 免费的次数 }