mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-05 00:26:06 +03:00
24 lines
479 B
Protocol Buffer
24 lines
479 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MatchType.proto";
|
|
|
|
// CmdId: 4192
|
|
// Name: APIPBBJHNFE
|
|
message PlayerMatchAgreedResultNotify {
|
|
// Name: LHJPPCIIDKM
|
|
enum Reason {
|
|
SUCC = 0;
|
|
TARGET_SCENE_CANNOT_ENTER = 1;
|
|
SELF_MP_UNAVAILABLE = 2;
|
|
OTHER_DATA_VERSION_NOT_LATEST = 3;
|
|
DATA_VERSION_NOT_LATEST = 4;
|
|
}
|
|
|
|
MatchType match_type = 1;
|
|
uint32 target_uid = 6;
|
|
Reason reason = 14;
|
|
}
|
|
|