game_sync/gamesrv/base/xslotjackpotpool.go

11 lines
170 B
Go

package base
type XSlotJackpotPool struct {
//PrizeFund int64
JackpotFund int64
}
func (this *XSlotJackpotPool) GetJackPotFund() int64 {
return this.JackpotFund
}