mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-04 01:04:36 +03:00
16 lines
319 B
Protocol Buffer
16 lines
319 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CrystalLinkTeamInfo.proto";
|
|
|
|
// CmdId: 8602
|
|
// Name: FHBKALGPONC
|
|
message CrystalLinkEnterDungeonRsp {
|
|
uint32 difficulty_id = 1;
|
|
repeated CrystalLinkTeamInfo team_info_list = 14;
|
|
int32 retcode = 13;
|
|
uint32 level_id = 11;
|
|
}
|
|
|