增加 胜率统计

This commit is contained in:
筱傑
2022-01-23 16:20:21 +08:00
parent 30eb1b2883
commit 55ce2defc9
3 changed files with 41 additions and 5 deletions

View File

@@ -1,8 +1,26 @@
package top.jie65535.jhr.game
/**
* 玩家数据统计
*/
class PlayerStatistics {
/**
* 下注次数
*/
var betCount = 0
/**
* 胜利次数
*/
var winCount = 0
/**
* 贡献次数(增加词条次数)
*/
var contribution = 0
/**
* 签到次数
*/
var signCount = 0
}