GC-Proto/proto/PlayerMatchAgreedResultNoti...

24 lines
481 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 "MatchType.proto";
2023-02-28 04:12:44 +03:00
// Name: LLNEHDDNECO
// CmdId: 4185
2023-02-18 04:48:44 +03:00
message PlayerMatchAgreedResultNotify {
2023-02-28 04:12:44 +03:00
// Name: GPKBCIHEKAE
enum Reason {
SUCC = 0;
TARGET_SCENE_CANNOT_ENTER = 1;
SELF_MP_UNAVAILABLE = 2;
OTHER_DATA_VERSION_NOT_LATEST = 3;
DATA_VERSION_NOT_LATEST = 4;
}
2023-02-18 04:48:44 +03:00
2023-02-28 04:12:44 +03:00
Reason reason = 13;
uint32 target_uid = 15;
MatchType match_type = 10;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00