mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-27 00:49:25 +03:00
23 lines
415 B
Protocol Buffer
23 lines
415 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "InstableSprayAvatarInfo.proto";
|
||
|
|
||
|
message InstableSprayEnterDungeonReq {
|
||
|
//enum GIDCKAOEICG {
|
||
|
// option allow_alias= true;
|
||
|
// NONE = 0;
|
||
|
// PEPPOHPHJOJ = 24659;
|
||
|
// DCDNILFDFLB = 0;
|
||
|
// NNBKOLMPOEA = 1;
|
||
|
// EAJIABGAOCI = 1;
|
||
|
//}
|
||
|
|
||
|
uint32 stageId = 4;
|
||
|
repeated InstableSprayAvatarInfo avatarInfoList = 8;
|
||
|
uint32 difficulty = 1;
|
||
|
}
|