GC-Proto/proto/GetStoreCustomDungeonRsp.proto

14 lines
272 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "OtherCustomDungeonBrief.proto";
2023-02-28 04:12:44 +03:00
// Name: DFLFGBCHEMP
// CmdId: 6210
2023-02-18 04:48:44 +03:00
message GetStoreCustomDungeonRsp {
2023-02-28 04:12:44 +03:00
repeated OtherCustomDungeonBrief custom_dungeon_list = 3;
int32 retcode = 9;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00