mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 08:30:22 +03:00
22 lines
435 B
Protocol Buffer
22 lines
435 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
|
||
|
import "TryCustomDungeonType.proto";
|
||
|
import "EnterCustomDungeonType.proto";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message CustomDungeonOfficialNotify {
|
||
|
enum PDLFCGFJBIO {
|
||
|
option allow_alias = true;
|
||
|
NONE = 0;
|
||
|
PEPPOHPHJOJ = 6236;
|
||
|
DCDNILFDFLB = 0;
|
||
|
NNBKOLMPOEA = 1;
|
||
|
}
|
||
|
|
||
|
TryCustomDungeonType tryType = 7;
|
||
|
repeated uint32 officialBlackCoinList = 12;
|
||
|
EnterCustomDungeonType enterType = 11;
|
||
|
}
|