GC-Proto/proto/CustomDungeonResultInfo.proto

18 lines
470 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
2024-06-08 09:18:08 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-08-28 12:09:22 +03:00
// Version: 5.0
2024-06-08 09:18:08 +03:00
2023-08-17 14:18:58 +03:00
import "ChallengeBrief.proto";
2024-08-28 12:09:22 +03:00
import "CustomDungeonFinishType.proto";
2024-06-08 09:18:08 +03:00
2024-08-28 12:09:22 +03:00
message CustomDungeonResultInfo {
repeated ChallengeBrief child_challenge_list = 2;
uint32 got_coin_num = 3;
bool FOLIKAAIKIE = 5;
bool GBLHFAEONKM = 6;
CustomDungeonFinishType finish_type = 10;
uint32 time_cost = 11;
bool LHNFIIEJBEM = 14;
uint64 dungeon_guid = 15;
}