mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
17 lines
361 B
Protocol Buffer
17 lines
361 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CustomDungeon.proto";
|
|
import "EnterCustomDungeonType.proto";
|
|
|
|
// Name: DKDPGFEDLKH
|
|
// CmdId: 6243
|
|
message EnterCustomDungeonRsp {
|
|
EnterCustomDungeonType enter_type = 5;
|
|
CustomDungeon custom_dungeon = 14;
|
|
int32 retcode = 1;
|
|
map<uint32, uint32> room_cost_map = 3;
|
|
}
|
|
|