mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
26 lines
464 B
Protocol Buffer
26 lines
464 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "MatchType.proto";
|
||
|
|
||
|
message PlayerStartMatchReq {
|
||
|
//enum AAPENNCPBLI {
|
||
|
// option allow_alias= true;
|
||
|
// NONE = 0;
|
||
|
// PEPPOHPHJOJ = 4188;
|
||
|
// DCDNILFDFLB = 0;
|
||
|
// NNBKOLMPOEA = 1;
|
||
|
// EAJIABGAOCI = 1;
|
||
|
//}
|
||
|
|
||
|
uint32 mechanicusDifficultLevel = 10;
|
||
|
repeated uint32 matchParamList = 15;
|
||
|
uint32 mpPlayId = 5;
|
||
|
uint32 dungeonId = 12;
|
||
|
uint32 matchId = 11;
|
||
|
MatchType matchType = 13;
|
||
|
}
|