mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
16 lines
359 B
Protocol Buffer
16 lines
359 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "EnterCustomDungeonType.proto";
|
|
import "TryCustomDungeonType.proto";
|
|
|
|
// CmdId: 6213
|
|
// Name: FEDBCANJJGD
|
|
message CustomDungeonOfficialNotify {
|
|
TryCustomDungeonType try_type = 2;
|
|
EnterCustomDungeonType enter_type = 9;
|
|
repeated uint32 official_black_coin_list = 12;
|
|
}
|
|
|