feat: 최대 강화 단계, 현재 골드 기반 랭크 추가
This commit is contained in:
parent
30debc44f5
commit
71e09915b7
6 changed files with 197 additions and 9 deletions
|
|
@ -23,11 +23,24 @@ message SC_SellResult {
|
|||
uint64 total_gold = 2;
|
||||
}
|
||||
|
||||
enum RankingType {
|
||||
RANKING_TYPE_LEVEL = 0;
|
||||
RANKING_TYPE_GOLD = 1;
|
||||
}
|
||||
|
||||
message CS_RankingRequest {
|
||||
RankingType type = 1;
|
||||
}
|
||||
|
||||
message RankingEntry {
|
||||
string nickname = 1;
|
||||
uint32 level = 2;
|
||||
uint32 rank = 1;
|
||||
string nickname = 2;
|
||||
uint64 value = 3;
|
||||
}
|
||||
|
||||
message SC_RankingList {
|
||||
repeated RankingEntry entries = 1;
|
||||
RankingType type = 1;
|
||||
repeated RankingEntry entries = 2;
|
||||
int32 my_rank = 3;
|
||||
uint64 my_value = 4;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue