新增棋子退役状态协议

This commit is contained in:
hahwu 2026-05-08 15:28:27 +08:00
parent 4324bdecc0
commit a62b246a98
2 changed files with 2290 additions and 1667 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2915,6 +2915,13 @@ struct ResPlayerChessInfo {
5: list<i32> Honor,
6: PartBag PartBag,
7: list<string> RetireReward,
8: map<string, RETIRE_STATUS> RetireData,
}
enum RETIRE_STATUS {
EMIT_RETIRE_START = 1,
EMIT_RETIRE_ING = 2,
EMIT_RETIRE_END = 3,
}