add 11
This commit is contained in:
parent
f8e8a34780
commit
c5922dc4fa
Binary file not shown.
|
@ -65,12 +65,6 @@ type (
|
||||||
Index int64
|
Index int64
|
||||||
BetSize int64
|
BetSize int64
|
||||||
}
|
}
|
||||||
// CashManiaBetBetLine comment
|
|
||||||
CashManiaBetBetLine struct {
|
|
||||||
Index int64
|
|
||||||
BetLine int64
|
|
||||||
BaseBet int64
|
|
||||||
}
|
|
||||||
// CashManiaItemInfo comment
|
// CashManiaItemInfo comment
|
||||||
CashManiaItemInfo struct {
|
CashManiaItemInfo struct {
|
||||||
Index int64
|
Index int64
|
||||||
|
@ -274,6 +268,11 @@ type (
|
||||||
SymbolBetRatio struct {
|
SymbolBetRatio struct {
|
||||||
BetRatio float64
|
BetRatio float64
|
||||||
}
|
}
|
||||||
|
// TestBetBetLine comment
|
||||||
|
TestBetBetLine struct {
|
||||||
|
Index int64
|
||||||
|
BetLine int64
|
||||||
|
}
|
||||||
// TestRandomWeight comment
|
// TestRandomWeight comment
|
||||||
TestRandomWeight struct {
|
TestRandomWeight struct {
|
||||||
ID int64
|
ID int64
|
||||||
|
@ -318,6 +317,9 @@ type (
|
||||||
// CashManiaBetBetLevel comment
|
// CashManiaBetBetLevel comment
|
||||||
CashManiaBetBetLevel = BetLevel
|
CashManiaBetBetLevel = BetLevel
|
||||||
|
|
||||||
|
// CashManiaBetBetLine comment
|
||||||
|
CashManiaBetBetLine = BetLine
|
||||||
|
|
||||||
// CashManiaBetBetSize comment
|
// CashManiaBetBetSize comment
|
||||||
CashManiaBetBetSize = BetSize
|
CashManiaBetBetSize = BetSize
|
||||||
|
|
||||||
|
@ -355,7 +357,7 @@ type (
|
||||||
FortuneDragonBetBetLevel = BetLevel
|
FortuneDragonBetBetLevel = BetLevel
|
||||||
|
|
||||||
// FortuneDragonBetBetLine comment
|
// FortuneDragonBetBetLine comment
|
||||||
FortuneDragonBetBetLine = CashManiaBetBetLine
|
FortuneDragonBetBetLine = BetLine
|
||||||
|
|
||||||
// FortuneDragonBetBetSize comment
|
// FortuneDragonBetBetSize comment
|
||||||
FortuneDragonBetBetSize = BetSize
|
FortuneDragonBetBetSize = BetSize
|
||||||
|
@ -385,7 +387,7 @@ type (
|
||||||
FortuneMouseBetBetLevel = BetLevel
|
FortuneMouseBetBetLevel = BetLevel
|
||||||
|
|
||||||
// FortuneMouseBetBetLine comment
|
// FortuneMouseBetBetLine comment
|
||||||
FortuneMouseBetBetLine = CashManiaBetBetLine
|
FortuneMouseBetBetLine = BetLine
|
||||||
|
|
||||||
// FortuneMouseBetBetSize comment
|
// FortuneMouseBetBetSize comment
|
||||||
FortuneMouseBetBetSize = BetSize
|
FortuneMouseBetBetSize = BetSize
|
||||||
|
@ -418,7 +420,7 @@ type (
|
||||||
FortuneOxBetBetLevel = BetLevel
|
FortuneOxBetBetLevel = BetLevel
|
||||||
|
|
||||||
// FortuneOxBetBetLine comment
|
// FortuneOxBetBetLine comment
|
||||||
FortuneOxBetBetLine = CashManiaBetBetLine
|
FortuneOxBetBetLine = BetLine
|
||||||
|
|
||||||
// FortuneOxBetBetSize comment
|
// FortuneOxBetBetSize comment
|
||||||
FortuneOxBetBetSize = BetSize
|
FortuneOxBetBetSize = BetSize
|
||||||
|
@ -454,7 +456,7 @@ type (
|
||||||
FortuneRabbitBetBetLevel = BetLevel
|
FortuneRabbitBetBetLevel = BetLevel
|
||||||
|
|
||||||
// FortuneRabbitBetBetLine comment
|
// FortuneRabbitBetBetLine comment
|
||||||
FortuneRabbitBetBetLine = CashManiaBetBetLine
|
FortuneRabbitBetBetLine = BetLine
|
||||||
|
|
||||||
// FortuneRabbitBetBetSize comment
|
// FortuneRabbitBetBetSize comment
|
||||||
FortuneRabbitBetBetSize = BetSize
|
FortuneRabbitBetBetSize = BetSize
|
||||||
|
@ -490,7 +492,7 @@ type (
|
||||||
FortuneTigerBetBetLevel = BetLevel
|
FortuneTigerBetBetLevel = BetLevel
|
||||||
|
|
||||||
// FortuneTigerBetBetLine comment
|
// FortuneTigerBetBetLine comment
|
||||||
FortuneTigerBetBetLine = CashManiaBetBetLine
|
FortuneTigerBetBetLine = BetLine
|
||||||
|
|
||||||
// FortuneTigerBetBetSize comment
|
// FortuneTigerBetBetSize comment
|
||||||
FortuneTigerBetBetSize = BetSize
|
FortuneTigerBetBetSize = BetSize
|
||||||
|
@ -789,9 +791,6 @@ type (
|
||||||
// TestBetBetLevel comment
|
// TestBetBetLevel comment
|
||||||
TestBetBetLevel = BetLevel
|
TestBetBetLevel = BetLevel
|
||||||
|
|
||||||
// TestBetBetLine comment
|
|
||||||
TestBetBetLine = BetLine
|
|
||||||
|
|
||||||
// TestBetBetSize comment
|
// TestBetBetSize comment
|
||||||
TestBetBetSize = BetSize
|
TestBetBetSize = BetSize
|
||||||
|
|
||||||
|
@ -812,4 +811,5 @@ type (
|
||||||
|
|
||||||
// TestSymbolBetRatio comment
|
// TestSymbolBetRatio comment
|
||||||
TestSymbolBetRatio = SymbolBetRatio
|
TestSymbolBetRatio = SymbolBetRatio
|
||||||
|
|
||||||
)
|
)
|
Loading…
Reference in New Issue