GC-Proto/proto/PlayerMatchSuccNotify.proto

22 lines
502 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
import "GCGMatchInfo.proto";
2023-02-18 04:48:44 +03:00
import "GeneralMatchInfo.proto";
import "MatchType.proto";
2023-02-28 04:12:44 +03:00
// Name: PEBHEPEPMJB
// CmdId: 4194
2023-02-18 04:48:44 +03:00
message PlayerMatchSuccNotify {
2023-02-28 04:12:44 +03:00
GCGMatchInfo gcg_match_info = 15;
uint32 confirm_end_time = 14;
GeneralMatchInfo general_match_info = 9;
MatchType match_type = 8;
uint32 host_uid = 1;
uint32 mp_play_id = 10;
uint32 dungeon_id = 6;
uint32 mechanicus_difficult_level = 7;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00