mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-24 06:50:36 +00:00
17 lines
400 B
Protocol Buffer
17 lines
400 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "ParamList.proto";
|
||
|
import "StrengthenPointData.proto";
|
||
|
|
||
|
message DungeonSettleNotify {
|
||
|
uint32 dungeon_id = 1;
|
||
|
bool is_success = 2;
|
||
|
repeated uint32 fail_cond_list = 3;
|
||
|
map<uint32, ParamList> settle_show = 4;
|
||
|
uint32 close_time = 5;
|
||
|
map<uint32, StrengthenPointData> strengthen_point_data_map = 6;
|
||
|
uint32 result = 7;
|
||
|
}
|