增加 收益榜与白给榜

This commit is contained in:
2022-01-24 09:13:54 +08:00
parent c0d4a60be2
commit 3936b8d63c
2 changed files with 43 additions and 4 deletions

View File

@@ -31,11 +31,23 @@ class PlayerStatistics {
*/
var totalBetScore = 0
/**
* 获胜积分累计
*/
var totalWinScore = 0
/**
* 失败积分累计
*/
var totalLossScore = 0
override fun toString(): String {
return "下注次数:${betCount}\n" +
"获胜次数:${winCount}\n" +
"贡献次数:${contribution}\n" +
"签到次数:${signCount}\n" +
"下注积分:${totalBetScore}"
"下注积分:${totalBetScore}\n" +
"收益:${totalWinScore}\n" +
"亏损:${totalLossScore}"
}
}