GC-Proto/proto/CrystalLinkEnterDungeonReq.proto

15 lines
295 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 "CrystalLinkTeamInfo.proto";
2023-02-28 04:12:44 +03:00
// Name: FFLLNNCGFPA
// CmdId: 8861
2023-02-18 04:48:44 +03:00
message CrystalLinkEnterDungeonReq {
2023-02-28 04:12:44 +03:00
uint32 difficulty_id = 15;
uint32 level_id = 8;
repeated CrystalLinkTeamInfo team_info_list = 10;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00