GC-Proto/proto/CustomDungeonRecoverNotify.proto

18 lines
426 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 "CustomDungeon.proto";
2023-02-28 04:12:44 +03:00
import "EnterCustomDungeonType.proto";
import "TryCustomDungeonType.proto";
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
// Name: OJMGDEGHLMA
// CmdId: 6204
2023-02-18 04:48:44 +03:00
message CustomDungeonRecoverNotify {
2023-02-28 04:12:44 +03:00
EnterCustomDungeonType enter_type = 4;
TryCustomDungeonType try_type = 12;
CustomDungeon custom_dungeon = 9;
repeated uint32 official_black_coin_list = 2;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00