mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
15 lines
279 B
Protocol Buffer
15 lines
279 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: BGALNOFJNKP
|
|
message RogueDiaryProgress {
|
|
bool is_enter_dungeon = 4;
|
|
uint32 stage_id = 1;
|
|
repeated uint32 optional_card_list = 5;
|
|
uint32 difficulty = 3;
|
|
uint32 cur_round = 8;
|
|
}
|
|
|