mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
362 B
Protocol Buffer
17 lines
362 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CustomDungeon.proto";
|
|
import "EnterCustomDungeonType.proto";
|
|
|
|
// CmdId: 6216
|
|
// Name: NOLHMPAAHCB
|
|
message EnterCustomDungeonRsp {
|
|
map<uint32, uint32> room_cost_map = 8;
|
|
CustomDungeon custom_dungeon = 15;
|
|
EnterCustomDungeonType enter_type = 11;
|
|
int32 retcode = 4;
|
|
}
|
|
|