package dg5_json // easyjson type ImagesItem struct { Cards [][]int `json:"cards"` WinGold float64 `json:"winGold"` TumbleWinGold float64 `json:"tumbleWinGold"` FreeGold float64 `json:"freeGold"` FreeSpins int `json:"freeSpins"` GainedFreeSpins int `json:"gainedFreeSpins"` WonFreeSpins bool `json:"wonFreeSpins"` WinCards [][]int `json:"winCards"` Mul int `json:"mul"` FinalMul int `json:"finalMul"` TotalWinGold float64 `json:"totalWinGold"` IsScatter bool `json:"isScatter"` IsFree bool `json:"isFree"` IsFu bool `json:"isFu"` } // easyjson type Images struct { Si []*ImagesItem `json:"si"` } // easyjson type CustomData struct { Tw float64 `json:"tw"` Sstw float64 `json:"sstw"` Fsci int `json:"fsci"` Fsmi int `json:"fsmi"` SpinImage []*ImagesItem `json:"spinImage"` ScatterNum int `json:"scatterNum"` TotalWin float64 `json:"totalWin"` Idx int } type CardPos struct { L int H int }